david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/util/Makefile
Marin Hannache 8c42e0c210 [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>
2012-04-24 11:45:24 +01:00

17 lines
332 B
Makefile

BLIB = ../bin/blib.a
CFLAGS = -Os
all : hijack mucurses_test
hijack : hijack.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $<
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 mucurses_test *.o