CFLAGS = -Wall -O -pipe -fomit-frame-pointer -I/usr/X11R6/include LIBS = -L/usr/X11R6/lib -lX11 PROGS = xtest drawstring xtest: xtest.o $(CC) -o $(.TARGET) $(.ALLSRC) $(LIBS) drawstring: drawstring.o $(CC) -o $(.TARGET) $(.ALLSRC) $(LIBS) clean: /bin/rm -f *.o *.so* $(PROGS) .