Changeset 97 for trunk/tools
- Timestamp:
- Aug 11, 2010, 6:18:37 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/Makefile.am
r92 r97 1 1 2 all:make-font2 noinst_PROGRAMS = make-font 3 3 4 make-font: make-font.o 5 g++ -g -Wall -O3 $^ -o $@ `pkg-config --libs caca` 4 make_font_SOURCES = make-font.cpp 5 make_font_CXXFLAGS = `pkg-config --cflags caca` 6 make_font_LDFLAGS = `pkg-config --libs caca` 6 7 7 %.o: %.cpp8 g++ -g -Wall -O3 -c $^ -o $@ `pkg-config --cflags caca`9 10 clean:11 rm -f *.o make-font12
Note: See TracChangeset
for help on using the changeset viewer.