summaryrefslogtreecommitdiff
path: root/render/makefile
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2002-05-04 19:57:18 +0000
committerJames Bursa <james@netsurf-browser.org>2002-05-04 19:57:18 +0000
commit50d95fdf6f598dc679c7065cd5ced044d5abcd8e (patch)
tree45fa630380afea9dad73ba4861a1a1a5e6dcbe93 /render/makefile
parent57f0b382044bbd7497b84e1d560f99d135ec1f70 (diff)
downloadnetsurf-50d95fdf6f598dc679c7065cd5ced044d5abcd8e.tar.gz
netsurf-50d95fdf6f598dc679c7065cd5ced044d5abcd8e.tar.bz2
[project @ 2002-05-04 19:57:18 by bursa]
Split box and layout modules from render.c. svn path=/import/netsurf/; revision=13
Diffstat (limited to 'render/makefile')
-rw-r--r--render/makefile19
1 files changed, 13 insertions, 6 deletions
diff --git a/render/makefile b/render/makefile
index f7fced802..de061e678 100644
--- a/render/makefile
+++ b/render/makefile
@@ -1,15 +1,15 @@
-# $Id: makefile,v 1.2 2002/04/25 15:49:32 bursa Exp $
+# $Id: makefile,v 1.3 2002/05/04 19:57:18 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
+-Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -std=c9x `xml2-config --cflags`
CC = gcc
-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: render.o utils.o css.o css_enum.o font.o box.o layout.o
+ $(CC) $(FLAGS) -o render render.o utils.o css.o css_enum.o font.o box.o layout.o `xml2-config --libs`
-render.o: render.c css.h css_enum.h utils.h font.h
- $(CC) $(FLAGS) `xml2-config --cflags` -c render.c
+render.o: render.c css.h css_enum.h utils.h font.h box.h layout.h
+ $(CC) $(FLAGS) -c render.c
css.o: css.c css.h css_enum.h utils.h
$(CC) $(FLAGS) -c css.c
@@ -25,3 +25,10 @@ css_enum.o: css_enum.c css_enum.h
css_enum.c css_enum.h: css_enums makeenum
./makeenum css_enum < css_enums
+
+box.o: box.c box.h font.h css.h utils.h
+ $(CC) $(FLAGS) -c box.c
+
+layout.o: layout.c layout.h font.h css.h utils.h box.h
+ $(CC) $(FLAGS) -c layout.c
+