3d5e72e20b
variable we're using; change the name of the variable.
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
D := util/misc
|
|
|
|
define build-misc-impl
|
|
$(call reset)
|
|
$(call cfile, $D/esize.c)
|
|
$(call cprogram, $(BINDIR)/esize)
|
|
$(call installto, $(INSDIR)/bin/esize)
|
|
|
|
$(call reset)
|
|
$(eval q := $D/esize.1)
|
|
$(call installto, $(INSDIR)/share/man/man1/esize.1)
|
|
|
|
$(call reset)
|
|
$(eval objdir := encode)
|
|
$(call cfile, $D/convert.c)
|
|
$(eval $q: $(INCDIR)/em_comp.h $(INCDIR)/em_codeEK.h)
|
|
$(call rawfile, $(LIBREAD_EMEV))
|
|
$(call rawfile, $(LIBEMK))
|
|
$(call rawfile, $(LIBEM_DATA))
|
|
$(call rawfile, $(LIBALLOC))
|
|
$(call rawfile, $(LIBPRINT))
|
|
$(call rawfile, $(LIBSTRING))
|
|
$(call rawfile, $(LIBSYSTEM))
|
|
$(call cprogram, $(BINDIR)/em_encode)
|
|
$(call installto, $(PLATDEP)/em_encode)
|
|
$(eval EM_ENCODE := $o)
|
|
$(eval ACK_CORE_TOOLS += $o)
|
|
|
|
$(call reset)
|
|
$(eval objdir := decode)
|
|
$(call cfile, $D/convert.c)
|
|
$(eval $q: $(INCDIR)/em_comp.h $(INCDIR)/em_codeEK.h)
|
|
$(call rawfile, $(LIBREAD_EMKV))
|
|
$(call rawfile, $(LIBEME))
|
|
$(call rawfile, $(LIBEM_DATA))
|
|
$(call rawfile, $(LIBALLOC))
|
|
$(call rawfile, $(LIBPRINT))
|
|
$(call rawfile, $(LIBSTRING))
|
|
$(call rawfile, $(LIBSYSTEM))
|
|
$(call cprogram, $(BINDIR)/em_decode)
|
|
$(call installto, $(PLATDEP)/em_decode)
|
|
$(eval EM_DECODE := $o)
|
|
|
|
$(call reset)
|
|
$(eval q := $D/em_decode.6)
|
|
$(call installto, $(INSDIR)/share/man/man6/em_decode.6)
|
|
endef
|
|
|
|
$(eval $(build-misc-impl))
|