SHELL=/bin/sh

all:
	$(CC) -c program3.c
	$(CC) -c program4.c

clean:
	-@rm -f *.o
