ack/util/arch/build.mk

24 lines
435 B
Makefile
Raw Normal View History

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))