24 lines
435 B
Makefile
24 lines
435 B
Makefile
|
D := util/arch
|
||
|
|
||
|
define build-aal-impl
|
||
|
$(call reset)
|
||
|
$(eval cflags += -DAAL)
|
||
|
|
||
|
$(call cfile, $D/archiver.c)
|
||
|
|
||
|
$(call file, $(LIBOBJECT))
|
||
|
$(call file, $(LIBPRINT))
|
||
|
$(call file, $(LIBSTRING))
|
||
|
$(call file, $(LIBSYSTEM))
|
||
|
|
||
|
$(call cprogram, $(BINDIR)/aal)
|
||
|
$(call installto, $(INSDIR)/bin/aal)
|
||
|
$(eval AAL := $o)
|
||
|
|
||
|
$(call reset)
|
||
|
$(eval q := $D/aal.1)
|
||
|
$(call installto, $(INSDIR)/share/man/man1/aal.1)
|
||
|
endef
|
||
|
|
||
|
$(eval $(build-aal-impl))
|