changed .gitignore to not ignore Makefile so build still works
authorGood Guy <good1.2guy@gmail.com>
Mon, 6 Jun 2022 18:17:57 +0000 (12:17 -0600)
committerGood Guy <good1.2guy@gmail.com>
Mon, 6 Jun 2022 18:17:57 +0000 (12:17 -0600)
cinelerra-5.1/libbthread-master/.gitignore
cinelerra-5.1/libbthread-master/Makefile [new file with mode: 0644]

index 173fd3695a963030fd45c804dbf760cabc13dcab..9afa025d22282e20a14ce8543471f3ee309a8ea5 100644 (file)
@@ -1,4 +1,3 @@
-/Makefile
 /Makefile.in
 /aclocal.m4
 /autom4te.cache/
 /Makefile.in
 /aclocal.m4
 /autom4te.cache/
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