include config.mk

all: bar

bar: bar.c
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o bar bar.c $(LDLIBS)

clean:
	rm -f bar

.PHONY: all clean
