obj = pulser.o bin = pulser CFLAGS = -pedantic -Wall -g $(bin): $(obj) $(CC) -o $@ $(obj) $(LDFLAGS) .PHONY: clean clean: rm -f $(obj) $(bin)