~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/ipxe/src/util/Makefile

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
BLIB = ../bin/blib.a
 
2
CFLAGS = -Os
 
3
 
 
4
all : hijack mucurses_test
 
5
 
 
6
hijack : hijack.c
 
7
        $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $<
 
8
 
 
9
mucurses_test.o : mucurses_test.c
 
10
        $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $<
 
11
 
 
12
mucurses_test : mucurses_test.o $(BLIB)
 
13
        $(CC) -o $@ $< -lc $(BLIB)
 
14
 
 
15
clean :
 
16
        rm -f hijack mucurses_test *.o