aboutsummaryrefslogtreecommitdiffstats
path: root/main/unrar/makefile.patch
blob: 37505f4e98be35b82fb5aa13566451340c9cf036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff -upr unrar.orig/makefile unrar/makefile
--- unrar.orig/makefile	2016-02-10 11:07:37.891117505 +0100
+++ unrar/makefile	2016-02-10 11:08:35.014309799 +0100
@@ -3,11 +3,11 @@
 
 # Linux using GCC
 CXX=g++
-CXXFLAGS=-O2
+CXXFLAGS?=-O2
 LIBFLAGS=-fPIC
 DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP
 STRIP=strip
-LDFLAGS=-pthread
+LDFLAGS+=-pthread
 DESTDIR=/usr
 
 # Linux using LCC
@@ -118,7 +118,7 @@ uninstall:	uninstall-unrar
 clean:
 	@rm -f *.o *.bak *~
 
-unrar:	clean $(OBJECTS) $(UNRAR_OBJ)
+unrar:	$(OBJECTS) $(UNRAR_OBJ)
 	@rm -f unrar
 	$(LINK) -o unrar $(LDFLAGS) $(OBJECTS) $(UNRAR_OBJ) $(LIBS)	
 	$(STRIP) unrar