CXX := g++ LD := g++ RM := /bin/rm CXXFLAGS := -g3 -O2 CPPFLAGS := -I/usr/include/GraphicsMagick LDFLAGS := -L/usr/lib -L/usr/lib/X11 LIBS := -lGraphicsMagick++ .PHONY: all .SUFFIXES: .c .cpp OBJ = cygwin_exception_test.o all: cygwin_exception_test cygwin_exception_test: $(OBJ) $(LD) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) clean: $(RM) -f *.o cygwin_exception_test