# Sample make file
# Some more comments about this file

# Some Identifiers and Preproccessor stuff
!ifndef DEBUG
CFLAGS=-DDEBUG -g $(CFLAGS)
!else
CFLAGS=-Os $(CFLAGS)
!endif

helloworld: helloworld.o
		cc -o $@ $<

helloworld.o: helloworld.c
		cc -c -o $@ $<

.PHONY: clean
clean:
		rm -f helloworld helloworld.o *~ core