all:	add post

add: add.c
	gcc -g -o add add.c

post: post.c
	gcc -g -o post post.c

clean:
	rm -f add post core*
