summaryrefslogtreecommitdiff
path: root/package/iptraf/patches/patch-support_Makefile
blob: c72b89ef66b0e30a337a65f0864e2ab3522220ee (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
$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
--- iptraf-3.0.0.orig/support/Makefile	2002-07-19 18:31:48.000000000 +0200
+++ iptraf-3.0.0/support/Makefile	2008-10-09 17:34:11.000000000 +0200
@@ -3,16 +3,14 @@ INCLUDEDIR		= -I/usr/include/ncurses
 OBJS			= input.o menurt.o listbox.o winops.o labels.o \
 				msgboxes.o txbox.o
 
-all: libtextbox.a
-
 libtextbox.a: $(OBJS)
 	rm -rf libtextbox.a
-	ar cq libtextbox.a $(OBJS)
-	ranlib libtextbox.a
-#	gcc -shared -o libtextbox.so $(OBJS)
+	$(AR) cq libtextbox.a $(OBJS)
+	$(RANLIB) libtextbox.a
+#	$(CC) -shared -o libtextbox.so $(OBJS)
 
 %.o: %.c *.h
-	gcc -O2 -g -Wall -fPIC $(INCLUDEDIR) -c -o $*.o $<
+	$(CC) -O2 -g -Wall -fPIC $(INCLUDEDIR) -c -o $*.o $<
 
 clean:
 	rm -rf *.o *~ libtextbox.a libtextbox.so