From 22f703cab05b7cd368f4de9e03991b7664dc5022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 1 Sep 2014 13:56:46 +0200 Subject: Initial import of argyll version 1.5.1-8 --- cgats/Jamfile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 cgats/Jamfile (limited to 'cgats/Jamfile') diff --git a/cgats/Jamfile b/cgats/Jamfile new file mode 100644 index 0000000..813269a --- /dev/null +++ b/cgats/Jamfile @@ -0,0 +1,37 @@ + +# Jamfile for cgats library + +#PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on +PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags +PREF_LINKFLAGS = $(LINKDEBUGFLAG) ; + +#if stdio is not wanted in icclib: +#DEFINES = SEPARATE_STD ; + +#Products +Libraries = libcgats ; +Headers = cgats.h ; + +#Install +#InstallLib $(DESTDIR)$(PREFIX)/lib : $(Libraries ; +#InstallFile $(DESTDIR)$(PREFIX)/h : $(Headers) ; + +# Stop objects that are in more than one library from being +# prematurely deleted: +ObjectKeep cgats pars ; + +# CGATS library +Library libcgats : pars.c cgats.c ; + +# Executable support if SEPARATED_STD +if SEPARATE_STD in $(DEFINES) { + Objects parsstd.c cgatsstd.c ; + LINKOBJS = cgatsstd parsstd ; # Link all tests here with these +} + +# Individual stand alone test of parser +MainVariant pars : pars.c : : STANDALONE_TEST ; + +# Individual stand alone test of cgats i/o +MainVariant cgats : cgats.c : : STANDALONE_TEST : : pars ; + -- cgit v1.2.3