# # Makefile for rdf-smush.c # # These settings may need to be changed. CC = gcc # The rest should not need to be changed. CFLAGS = -g -Wall `redland-config --cflags` LDFLAGS = `redland-config --libs` PROGS=rdf-smush all: $(PROGS) - clean: rm -f *.o $(PROGS)