# Truck Computer Dooom! # # Douglas Thrift # # $Id$ common := Common include $(common)/common.mk targets := $(common) StearingWheelRemote all := $(patsubst %, all-%, $(targets)) clean := $(patsubst %, clean-%, $(targets)) .PHONY: all $(all) clean $(clean) all: $(filter-out all-Common, $(all)) @echo $@ all-%: @echo $@ @$(MAKE) -C $(patsubst all-%, %, $@) clean: $(clean) clean-%: @echo $@ @$(MAKE) -C $(patsubst clean-%, %, $@)