1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#
# This makefile can be used to build a Win32 application under Cygwin
#
include ../../../Makefile.in.$(shell uname)
PROGNAME=trans_curve2
OUTNAME=$(PROGNAME)
PLATFORM=win32
CXXFLAGS= $(AGGCXXFLAGS) \
-I../../../include \
-I../../../font_win32_tt \
-I/usr/X11R6/include \
-L/usr/X11R6/lib \
-L../../../src \
$(PIXFMT)
LIBS = $(AGGLIBS) -lm -lgdi32
SRC=\
../../$(PROGNAME).cpp \
../../interactive_polygon.cpp \
../../../src/platform/$(PLATFORM)/agg_platform_support.cpp \
../../../src/platform/$(PLATFORM)/agg_win32_bmp.cpp \
../../../font_win32_tt/agg_font_win32_tt.cpp
OBJ= $(SRC:.cpp=.o)
$(OUTNAME): $(OBJ)
$(CXX) $(CXXFLAGS) $^ -o $(OUTNAME) $(LIBS)
clean:
rm -f $(OUTNAME)
rm -f ../../$(PROGNAME).o
rm -f ../../interactive_polygon.o
rm -f ../../../src/platform/$(PLATFORM)/agg_platform_support.o
rm -f gamma.txt
rm -f gamma.bin
%.o: %.cpp
@echo \< $*.cpp \>
$(CXX) -c $(CXXFLAGS) $*.cpp -o $@
|