blob: fae8e39382e8834127bc883a49915208ebdd68a3 (
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
|
$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 2011-01-21 13:47:38.508658394 +0100
@@ -1,18 +1,13 @@
-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
%.o: %.c *.h
- gcc -O2 -g -Wall -fPIC $(INCLUDEDIR) -c -o $*.o $<
+ $(CC) $(CPPFLAGS) $(CFLAGS) -fPIC -c -o $*.o $<
clean:
rm -rf *.o *~ libtextbox.a libtextbox.so
|