nautilus/librsvg/makefile-simple
Raph Levien f94709b37c Made test-ft-gtk display the entire window worth of text. Boy, does
performance suck! That will change soon enough, though :)
2000-08-13 00:23:36 +00:00

30 lines
982 B
Text

# This is a very simple makefile which may be useful in those rare cases
# when autoconf is more of a pain in the ass than it's worth.
#FREETYPE_CFLAGS=-I/usr/local/include
#FREETYPE_LDLIBS=-L/usr/local/lib -lfreetype
FREETYPE_CFLAGS=-I../cut-n-paste-code
FREETYPE_LDLIBS=-L../cut-n-paste-code/freetype/.libs -lfreetype
CFLAGS=-g -Wall -ansi -Wno-uninitialized -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare -Wsign-promo -Werror $(FREETYPE_CFLAGS) `gnome-config --cflags glib libart gdk_pixbuf xml`
LDLIBS=`gnome-config --libs glib libart gdk_pixbuf xml` -lpopt $(FREETYPE_LDLIBS)
RSVG_OBJS=art_render_gradient.o \
art_render_mask.o \
art_render_svp.o \
rsvg-bpath-util.o \
rsvg-css.o \
rsvg-defs.o \
rsvg-ft.o \
rsvg-paint-server.o \
rsvg-path.o \
rsvg.o
all: test-rsvg test-ft test-ft-gtk
test-rsvg: test-rsvg.o $(RSVG_OBJS)
test-ft: test-ft.o $(RSVG_OBJS)
test-ft-gtk: test-ft-gtk.o $(RSVG_OBJS)