PROG=csum OBJS=calc_checksum.o $(PROG): $(OBJS) mkdir bin $(CC) -o $@ $^ mv $@ bin .c.o: gcc -c $< .PHONY: clean clean: rm -fr bin $(OBJS)