.SECONDEXPANSION:

a: SRCS = a1.c a2.c

OBJS = $(SRCS:.c=.o)

a: $$(OBJS)
	@echo $(OBJS)
	@echo Making $@ from $^
	@touch $@
