################################################## #Desc: Build rules for independent tools #Author: Mihrtec LLC #Date: 2016 ################################################## #Included from ./build.mk #sources and flags for tools ################################################## apcCC := gcc apcSRC := $(wildcard apc/*.c) apcFLG := $(CFLAGS) apcCL := -r /usr/local/the_march -o $(DISTDIR)/file.asspack TOOLSUP := $(shell echo '$(TOOLS)' | tr '[:lower:]' '[:upper:]') TOOLSRC := $(foreach tool,$(TOOLS),$($(tool)SRC)) TOOLOBJ := $(TOOLSRC:.c=.o)