1
0
This repository has been archived on 2025-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
openwrt_archive/net/iptraf/patches/001-cross_compile.patch
Florian Fainelli 916158d8d5 [package] update iptraf to 3.0.1 (#5866)
SVN-Revision: 17646
2009-09-20 13:15:49 +00:00

24 lines
620 B
Diff

--- a/support/Makefile
+++ b/support/Makefile
@@ -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) $(CFLAGS) -Wall -fPIC $(INCLUDEDIR) -c -o $*.o $<
clean:
rm -rf *.o *~ libtextbox.a libtextbox.so