From 68da70e4b1e7ef35c8229e0911fcb5715788f244 Mon Sep 17 00:00:00 2001
From: Andrew Randrianasulu <randrianasulu@gmail.com>
Date: Wed, 13 Apr 2022 17:10:29 +0300
Subject: [PATCH] Fix libbthread on non-android?

---
 cinelerra-5.1/libbthread-master/Makefile | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/cinelerra-5.1/libbthread-master/Makefile b/cinelerra-5.1/libbthread-master/Makefile
index 2d2c9457..a91f5279 100644
--- a/cinelerra-5.1/libbthread-master/Makefile
+++ b/cinelerra-5.1/libbthread-master/Makefile
@@ -1,7 +1,5 @@
 PLATFORM = $(uname -o)
 ifneq ($(PLATFORM),Android)
-install:
-	
 all:
 #	mv pt-test.c pt-test
 	cat `ls *.c` > just-pt.c
@@ -9,4 +7,11 @@ all:
 	ar crs jpt.a jpt.o
 clean:
 	rm -f *.a *.o
-endif
+install:
+	
+else
+all:
+install:
+clean:
+	
+endif
\ No newline at end of file
-- 
2.35.2

