annotate font/Makefile.in @ 21:d1bb7b365816

Fixed dynamic strings in selections (Fuko Pranks for instance)
author thib
date Fri, 31 Oct 2008 14:30:37 +0000
parents 223b71206888
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
223b71206888 Initial import
thib
parents:
diff changeset
1 @SET_MAKE@
223b71206888 Initial import
thib
parents:
diff changeset
2 CC = @CC@
223b71206888 Initial import
thib
parents:
diff changeset
3 CXX = @CXX@
223b71206888 Initial import
thib
parents:
diff changeset
4 LD = @CC@
223b71206888 Initial import
thib
parents:
diff changeset
5 AR = ar
223b71206888 Initial import
thib
parents:
diff changeset
6 RANLIB = @RANLIB@
223b71206888 Initial import
thib
parents:
diff changeset
7
223b71206888 Initial import
thib
parents:
diff changeset
8 CFLAGS= -I.. $(LOCAL_DEF) @CFLAGS@ @DEFS@ @FT2_CFLAGS@ -pthread -O2
223b71206888 Initial import
thib
parents:
diff changeset
9 CXXFLAGS = $(CFLAGS)
223b71206888 Initial import
thib
parents:
diff changeset
10 LDFLAGS = @LDFLAGS@ @FT2_LIBS@ @LIBS@ -pthread
223b71206888 Initial import
thib
parents:
diff changeset
11
223b71206888 Initial import
thib
parents:
diff changeset
12 SRCS = font_face.cc \
223b71206888 Initial import
thib
parents:
diff changeset
13 font_peer_fn.cc \
223b71206888 Initial import
thib
parents:
diff changeset
14 font_peer_ft2.cc \
223b71206888 Initial import
thib
parents:
diff changeset
15 font_peer_x11.cc \
223b71206888 Initial import
thib
parents:
diff changeset
16 font_layout.cc \
223b71206888 Initial import
thib
parents:
diff changeset
17 codeconv.cc \
223b71206888 Initial import
thib
parents:
diff changeset
18 text_stream.cc \
223b71206888 Initial import
thib
parents:
diff changeset
19 # render.c
223b71206888 Initial import
thib
parents:
diff changeset
20
223b71206888 Initial import
thib
parents:
diff changeset
21 OBJS = ${SRCS:.cc=.o}
223b71206888 Initial import
thib
parents:
diff changeset
22
223b71206888 Initial import
thib
parents:
diff changeset
23 all: libfont.a
223b71206888 Initial import
thib
parents:
diff changeset
24
223b71206888 Initial import
thib
parents:
diff changeset
25 libfont.a: ${OBJS}
223b71206888 Initial import
thib
parents:
diff changeset
26 rm -f libfont.a
223b71206888 Initial import
thib
parents:
diff changeset
27 ${AR} clq libfont.a ${OBJS}
223b71206888 Initial import
thib
parents:
diff changeset
28 $(RANLIB) libfont.a
223b71206888 Initial import
thib
parents:
diff changeset
29
223b71206888 Initial import
thib
parents:
diff changeset
30 clean:
223b71206888 Initial import
thib
parents:
diff changeset
31 rm -f libfont.a ${OBJS} *.bak *.core
223b71206888 Initial import
thib
parents:
diff changeset
32
223b71206888 Initial import
thib
parents:
diff changeset
33 .c.o:
223b71206888 Initial import
thib
parents:
diff changeset
34 $(CC) -c $(CFLAGS) -o $@ $<
223b71206888 Initial import
thib
parents:
diff changeset
35
223b71206888 Initial import
thib
parents:
diff changeset
36 .cc.o:
223b71206888 Initial import
thib
parents:
diff changeset
37 $(CXX) -c $(CFLAGS) -o $@ $<
223b71206888 Initial import
thib
parents:
diff changeset
38