CC = gcc CCOPTS = -Wall -pedantic -g -ggdb -Wl,-R /usr/lib LIBS = -lmailbox -lmu_mbox -lmu_maildir -lmu_mh -lsieve default: all all: testsieve testsieve: testsieve.c Makefile $(CC) $(CCOPTS) -o testsieve testsieve.c $(LIBS)