Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[util] Remove obsolete Makefile rule for util/prototester.c
util/prototester.c was removed in commit a6d1815 ("Obsolete for some
time now") back in 2006.

Signed-off-by: Marin Hannache <mareo@mareo.fr>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
Marin Hannache authored and mcb30 committed Apr 24, 2012
1 parent 7865ae0 commit 8c42e0c
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/util/Makefile
@@ -1,22 +1,16 @@
BLIB = ../bin/blib.a
CFLAGS = -Os

all : hijack prototester mucurses_test
all : hijack mucurses_test

hijack : hijack.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $<

prototester.o : prototester.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< -idirafter ../include

prototester : prototester.o $(BLIB)
$(CC) -o $@ $< -lc $(BLIB)

mucurses_test.o : mucurses_test.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $<

mucurses_test : mucurses_test.o $(BLIB)
$(CC) -o $@ $< -lc $(BLIB)

clean :
rm -f hijack prototester mucurses_test *.o
rm -f hijack mucurses_test *.o

0 comments on commit 8c42e0c

Please sign in to comment.