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

17 lines
342 B
Makefile

BLIB = ../bin/blib.a
CFLAGS = -Os
all : hijack prototester
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)
clean :
rm -f hijack prototester *.o