From: Good Guy Date: Mon, 6 Jun 2022 18:17:57 +0000 (-0600) Subject: changed .gitignore to not ignore Makefile so build still works X-Git-Tag: 2022-06~3 X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=commitdiff_plain;h=046d2eddad473ffa8940a1df0de27eb870ea8d55 changed .gitignore to not ignore Makefile so build still works --- 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