summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2002-04-25 15:49:32 +0000
committerJames Bursa <james@netsurf-browser.org>2002-04-25 15:49:32 +0000
commit33dc126f5354ce2efd3767c9f96f9d435056d24a (patch)
treea18c6eeec0c39aa5a4bdc853e7b49efb72a48d5a /render
parent4f1bd18a3de5084824ea6ca3995060aa1f199c3b (diff)
downloadnetsurf-33dc126f5354ce2efd3767c9f96f9d435056d24a.tar.gz
netsurf-33dc126f5354ce2efd3767c9f96f9d435056d24a.tar.bz2
[project @ 2002-04-25 15:49:32 by bursa]
Moved xml2-config switches to end of line. svn path=/import/netsurf/; revision=7
Diffstat (limited to 'render')
-rw-r--r--render/makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/render/makefile b/render/makefile
index 5630b6a33..f7fced802 100644
--- a/render/makefile
+++ b/render/makefile
@@ -1,14 +1,14 @@
-# $Id: makefile,v 1.1.1.1 2002/04/22 09:24:34 bursa Exp $
+# $Id: makefile,v 1.2 2002/04/25 15:49:32 bursa Exp $
FLAGS = -g -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual \
-Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes -Wmissing-prototypes \
-Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -std=c9x
CC = gcc
-render: render.o utils.o css.o css_enum.o
- $(CC) $(FLAGS) `xml2-config --libs` -o render render.o utils.o css.o css_enum.o
+render: render.o utils.o css.o css_enum.o font.o
+ $(CC) $(FLAGS) -o render render.o utils.o css.o css_enum.o font.o `xml2-config --libs`
-render.o: render.c css.h css_enum.h utils.h
+render.o: render.c css.h css_enum.h utils.h font.h
$(CC) $(FLAGS) `xml2-config --cflags` -c render.c
css.o: css.c css.h css_enum.h utils.h
@@ -17,6 +17,9 @@ css.o: css.c css.h css_enum.h utils.h
utils.o: utils.c utils.h
$(CC) $(FLAGS) -c utils.c
+font.o: font.c font.h
+ $(CC) $(FLAGS) -c font.c
+
css_enum.o: css_enum.c css_enum.h
$(CC) $(FLAGS) -c css_enum.c