Last change
on this file was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
525 bytes
|
Rev | Line | |
---|
[e16e8f2] | 1 | BLIB = ../bin/blib.a |
---|
| 2 | CFLAGS = -Os |
---|
| 3 | |
---|
| 4 | all : hijack prototester mucurses_test |
---|
| 5 | |
---|
| 6 | hijack : hijack.c |
---|
| 7 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $< |
---|
| 8 | |
---|
| 9 | prototester.o : prototester.c |
---|
| 10 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< -idirafter ../include |
---|
| 11 | |
---|
| 12 | prototester : prototester.o $(BLIB) |
---|
| 13 | $(CC) -o $@ $< -lc $(BLIB) |
---|
| 14 | |
---|
| 15 | mucurses_test.o : mucurses_test.c |
---|
| 16 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< |
---|
| 17 | |
---|
| 18 | mucurses_test : mucurses_test.o $(BLIB) |
---|
| 19 | $(CC) -o $@ $< -lc $(BLIB) |
---|
| 20 | |
---|
| 21 | clean : |
---|
| 22 | rm -f hijack prototester mucurses_test *.o |
---|
Note: See
TracBrowser
for help on using the repository browser.