summaryrefslogtreecommitdiff
path: root/gpxe/src/util/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/util/Makefile')
-rw-r--r--gpxe/src/util/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/gpxe/src/util/Makefile b/gpxe/src/util/Makefile
deleted file mode 100644
index d72661e2..00000000
--- a/gpxe/src/util/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-BLIB = ../bin/blib.a
-CFLAGS = -Os
-
-all : hijack prototester 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