diff options
Diffstat (limited to 'jcnf/Jamfile')
-rw-r--r-- | jcnf/Jamfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jcnf/Jamfile b/jcnf/Jamfile index cc9df79..ea1e8f7 100644 --- a/jcnf/Jamfile +++ b/jcnf/Jamfile @@ -1,13 +1,11 @@ -# JAM style makefile for yajl +# JAM style makefile for jcnf #PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags #PREF_CCFLAGS = $(CCHEAPDEBUG) ; # Heap Debugging flags PREF_LINKFLAGS = $(LINKDEBUGFLAG) ; # Link debugging flags -SubInclude yajl ; - #Products Libraries = libjcnf ; Executables = ; @@ -18,11 +16,13 @@ Headers = jcnf.h ; #InstallFile $(DESTDIR)$(PREFIX)/h : $(Headers) ; #InstallLib $(DESTDIR)$(PREFIX)/lib : $(Libraries) ; +HDRS = ../yajl ; + # config parser based on yajl Library libjcnf : jcnf.c ; # Link all utilities here with libicc -LINKLIBS = libjcnf yajl/libyajl ../numlib/libnum ; +LINKLIBS = libjcnf ../yajl/libyajl ../numlib/libnum ; # All utils are made from a single source file MainsFromSources test.c ; |