adding pesco's base64 example
This commit is contained in:
parent
44440c8347
commit
a68b93c618
3 changed files with 66 additions and 3 deletions
|
|
@ -1,13 +1,15 @@
|
|||
|
||||
OUTPUTS := dns.o \
|
||||
dns
|
||||
dns \
|
||||
base64.o \
|
||||
base64
|
||||
|
||||
TOPLEVEL := ../
|
||||
|
||||
include ../common.mk
|
||||
|
||||
|
||||
all: dns
|
||||
all: dns base64
|
||||
|
||||
dns: LDFLAGS:=-L../src -lhammer $(LDFLAGS)
|
||||
dns: dns.o rr.o dns_common.o
|
||||
|
|
@ -17,4 +19,10 @@ dns.o: ../src/hammer.h dns_common.h
|
|||
|
||||
rr.o: ../src/hammer.h rr.h dns_common.h
|
||||
|
||||
dns_common.o: ../src/hammer.h dns_common.h
|
||||
dns_common.o: ../src/hammer.h dns_common.h
|
||||
|
||||
base64: LDFLAGS:=-L../src -lhammer $(LDFLAGS)
|
||||
base64: base64.o
|
||||
$(call hush, "Linking $@") $(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
base64.o: ../src/hammer.h
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue