]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/third_party/Makefile
Migrated to CMake build system.
[bamtools.git] / src / third_party / Makefile
diff --git a/src/third_party/Makefile b/src/third_party/Makefile
deleted file mode 100644 (file)
index 8f475a2..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# ==========================
-# 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