mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
f94709b37c
performance suck! That will change soon enough, though :)
30 lines
982 B
Text
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)
|