2 CPPFLAGS
= -I.
-Itinysrp
5 LIBS_EADCLIENT
= tinysrp
/libtinysrp.a
6 LIBS_EAD
= tinysrp
/libtinysrp.a
-lpcap
14 cd tinysrp
; .
/configure
$(CONFIGURE_ARGS
)
16 tinysrp
/libtinysrp.a
: tinysrp
/Makefile
17 -$(MAKE
) -C tinysrp CFLAGS
="$(CFLAGS)"
19 %.o
: %.c
$(wildcard *.h
) tinysrp
/libtinysrp.a
20 $(CC
) $(CPPFLAGS
) $(CFLAGS
) -c
$< -o
$@
23 ead-crypt.o
: aes.c sha1.c
25 ead
: ead.o
$(obj
) tinysrp
/libtinysrp.a
26 $(CC
) -o
$@
$< $(obj
) $(LDFLAGS
) $(LIBS_EAD
)
28 ead-client
: ead-client.o
$(obj
)
29 $(CC
) -o
$@
$< $(obj
) $(LDFLAGS
) $(LIBS_EADCLIENT
)
32 rm -f
*.o ead ead-client
33 if
[ -f tinysrp
/Makefile
]; then
$(MAKE
) -C tinysrp
distclean; fi
This page took 0.045069 seconds and 5 git commands to generate.