X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fhdw-sniff.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=0000000000000000000000000000000000000000;hp=80353aee15fb19edc375f98831665efe01438d25;hb=2f4d587726a2e52de5cd8b8954b4a4f79a5267b8;hpb=065c77e28f2f7c79e73ad1bd52cf5ad8ce3c3127 diff --git a/Makefile b/Makefile deleted file mode 100644 index 80353ae..0000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# hdw-sniff Makefile, created Fri May 27 20:42:55 CEST 2005 - -INCLUDEDIR = /usr/include -CFLAGS = -DDEBUG -O3 -Wall -LIBS = -lm -lncurses -lpcap - -OBJS = network.o event.o list.o display.o input.o -OBJS2 = hdw-sniff - -links: - ln -sf ../api/network/network.{c,h} . - ln -sf ../api/event/event.{c,h} . - ln -sf ../api/list/list.{c,h} . - ln -sf ../api/display/display.{c,h} . - ln -sf ../api/input/input.{c,h} . - -hdw-sniff: links $(OBJS) - $(CC) $(CFLAGS) -o $@ $(OBJS) main.c parse.c $(LIBS) - -all: hdw-sniff - -clean: - rm -f $(OBJS) $(OBJS2) - -remake: clean all - -install: - mkdir -p /usr/bin - cp hdw-sniff /usr/bin