From 046d2eddad473ffa8940a1df0de27eb870ea8d55 Mon Sep 17 00:00:00 2001 From: Good Guy Date: Mon, 6 Jun 2022 12:17:57 -0600 Subject: [PATCH] changed .gitignore to not ignore Makefile so build still works --- cinelerra-5.1/libbthread-master/.gitignore | 1 - cinelerra-5.1/libbthread-master/Makefile | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 cinelerra-5.1/libbthread-master/Makefile diff --git a/cinelerra-5.1/libbthread-master/.gitignore b/cinelerra-5.1/libbthread-master/.gitignore index 173fd369..9afa025d 100644 --- a/cinelerra-5.1/libbthread-master/.gitignore +++ b/cinelerra-5.1/libbthread-master/.gitignore @@ -1,4 +1,3 @@ -/Makefile /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 index 00000000..f6480a60 --- /dev/null +++ b/cinelerra-5.1/libbthread-master/Makefile @@ -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 -- 2.26.2