]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/third_party/Makefile
Added JsonCPP code to repo. Will be used by FilterTool for script parsing
[bamtools.git] / src / third_party / Makefile
diff --git a/src/third_party/Makefile b/src/third_party/Makefile
new file mode 100644 (file)
index 0000000..8f475a2
--- /dev/null
@@ -0,0 +1,28 @@
+# ==========================
+# BamTools Makefile
+# (c) 2010 Derek Barnett
+#
+# src/third_party
+# ==========================
+
+OBJ_DIR = ../../obj
+BIN_DIR = ../../bin
+SRC_DIR = 
+
+# define source subdirectories
+SUBDIRS = jsoncpp
+
+all:
+       @for dir in $(SUBDIRS); do \
+               echo "- Building in $$dir"; \
+               $(MAKE) --no-print-directory -C $$dir; \
+               echo ""; \
+       done
+
+.PHONY: all
+
+clean:
+       @echo "Cleaning up."
+       @rm -f $(OBJ_DIR)/* $(BIN_DIR)/*
+
+.PHONY: clean