TARGETS=helloworld

.PHONY: all
all: $(TARGETS)

helloworld: helloworld.c Makefile
	$(CC) $(CFLAGS) helloworld.c $(LDFLAGS) -o helloworld

.PHONY: clean
clean:
	rm -f $(TARGETS)

