summaryrefslogtreecommitdiff
path: root/PcsxSrc/Linux/Makefile
diff options
context:
space:
mode:
authorPixel <Pixel>2002-10-16 11:38:00 +0000
committerPixel <Pixel>2002-10-16 11:38:00 +0000
commit4058c347a1ae501681d1e2517b666543f83bec68 (patch)
tree60bb932624e1bedcb5898b6550fb27b47d23f8f9 /PcsxSrc/Linux/Makefile
parentb90141c6a440f7fd85abec5e46be8a1cdf896191 (diff)
Changed some things...
Diffstat (limited to 'PcsxSrc/Linux/Makefile')
-rw-r--r--PcsxSrc/Linux/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/PcsxSrc/Linux/Makefile b/PcsxSrc/Linux/Makefile
index 71d47e5..3f194c9 100644
--- a/PcsxSrc/Linux/Makefile
+++ b/PcsxSrc/Linux/Makefile
@@ -39,7 +39,13 @@ endif
CFLAGS = -Wall ${OPTIMIZE} -I. -I.. -I/usr/include/g++ ${FLAGS}
CFLAGS+= $(shell gtk-config --cflags)
ASMFLAGS = -f elf ${FLAGS} -i./ -i../
-
+
+GladeGui.c: pcsx.glade
+ glade -w pcsx.glade
+
+GladeFuncs.c: pcsx.glade
+ glade -w pcsx.glade
+
pcsx: ${OBJS}
${CC} ${CFLAGS} ${OBJS} -o pcsx ${LIBS}
# ${STRIP} pcsx
@@ -47,7 +53,7 @@ pcsx: ${OBJS}
.PHONY: clean pcsx
clean:
- ${RM} *.o ../*.o ../${CPU}/*.o pcsx
+ ${RM} *.o ../*.o ../${CPU}/*.o pcsx GladeGui.* GladeFuncs.*
../%.o: ../%.c
${CC} ${CFLAGS} -c -o $@ $<