summaryrefslogtreecommitdiff
path: root/jcnf/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'jcnf/Jamfile')
-rw-r--r--jcnf/Jamfile32
1 files changed, 32 insertions, 0 deletions
diff --git a/jcnf/Jamfile b/jcnf/Jamfile
new file mode 100644
index 0000000..cc9df79
--- /dev/null
+++ b/jcnf/Jamfile
@@ -0,0 +1,32 @@
+
+# JAM style makefile for yajl
+
+#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 = ;
+Headers = jcnf.h ;
+
+#Install
+#InstallBin $(DESTDIR)$(PREFIX)/bin : $(Executables) ;
+#InstallFile $(DESTDIR)$(PREFIX)/h : $(Headers) ;
+#InstallLib $(DESTDIR)$(PREFIX)/lib : $(Libraries) ;
+
+# config parser based on yajl
+Library libjcnf : jcnf.c ;
+
+# Link all utilities here with libicc
+LINKLIBS = libjcnf yajl/libyajl ../numlib/libnum ;
+
+# All utils are made from a single source file
+MainsFromSources test.c ;
+
+
+
+