targets = ims.mak binfile.mak test.mak

.silent

test: .symbolic
  wmake -h -f test.mak

cleantest: .symbolic
  wmake -h -f test.mak cleanall

all: .symbolic
  for %i in ($(targets)) do wmake -h -f %i

clean: .symbolic
  for %i in ($(targets)) do wmake -h -f %i clean

cleanall: .symbolic
  for %i in ($(targets)) do wmake -h -f %i cleanall
