Changeset 52 for branches/clutter-experiments/Makefile
- Timestamp:
- 02/01/09 22:06:39 (3 years ago)
- Files:
-
- 1 modified
-
branches/clutter-experiments/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/clutter-experiments/Makefile
r48 r52 1 LIBS=`pkg-config --libs clutter-0.8 poppler-glib` 2 INCS=`pkg-config --cflags clutter-0.8 poppler-glib` 1 CXXFLAGS=-O3 -g -Wall -Weffc++ 2 LIBS=`pkg-config --libs clutter-0.9 poppler-glib` 3 INCS=`pkg-config --cflags clutter-0.9 poppler-glib` 3 4 4 5 .c.o: 5 $(CC) -g -Wall$(CFLAGS) $(INCS) -c $*.c6 $(CC) $(CFLAGS) $(INCS) -c $*.c 6 7 .cc.o: 7 $(CXX) -g -Wall -Weffc++$(CXXFLAGS) $(INCS) -c $*.cc8 $(CXX) $(CXXFLAGS) $(INCS) -c $*.cc 8 9 9 10 all: pdfcube … … 12 13 13 14 pdfcube: main.o 14 $(CXX) -g -Wall$(CXXFLAGS) -o $@ main.o $(LIBS)15 $(CXX) $(CXXFLAGS) -o $@ main.o $(LIBS) 15 16 16 17 clean: 17 18 rm -fr *.o pdfcube 19 20 .PHONY: check-syntax 21 check-syntax: 22 $(CXX) -Wall -Wextra -Weffc++ -pedantic -fsyntax-only $(INCS) $(CHK_SOURCES)

