1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Replaced three function calls with one.

This commit is contained in:
Oliver Schmidt 2013-05-02 23:57:26 +02:00
parent 39a877175b
commit 151cadf019

View File

@ -38,6 +38,8 @@ uninstall:
.PHONY: all $(PROGS) mostlyclean clean install uninstall
.SUFFIXES:
##########
define INSTALL_recipe
@ -58,7 +60,7 @@ endef
define OBJS_template
$(1)_OBJS := $$(addprefix ../wrk/,$$(addsuffix .o,$$(basename $$(wildcard $(1)/*.c))))
$(1)_OBJS := $$(patsubst %.c,../wrk/%.o,$$(wildcard $(1)/*.c))
$$($(1)_OBJS): | ../wrk/$(1)