SHELL=/bin/sh
all:
	$(CC) -c program1.c
	$(CC) -c program2.c

clean:
	-@rm -f *.o
