changed .gitignore to not ignore Makefile so build still works
[goodguy/cinelerra.git] / cinelerra-5.1 / libbthread-master / Makefile
diff --git a/cinelerra-5.1/libbthread-master/Makefile b/cinelerra-5.1/libbthread-master/Makefile
new file mode 100644 (file)
index 0000000..f6480a6
--- /dev/null
@@ -0,0 +1,18 @@
+PLATFORM = $(uname -o)
+ifneq ($(PLATFORM),Android)
+all:
+#
+#      mv pt-test.c pt-test
+#      cat `ls *.c` > just-pt.c
+       g++ -c -o jpt.o just-pt.cc -I.
+       ar crs jpt.a jpt.o
+clean:
+       rm -f *.a *.o
+install:
+       
+else
+all:
+install:
+clean:
+       
+endif