diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-04-30 13:14:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-30 13:14:59 +0000 |
commit | 7b3abdcb09278afa8c0b017825cefebded1781f9 (patch) | |
tree | cbce8fdbac181f3deb7f41c10d5dc5acf82450ae /uisimulator/x11/Makefile | |
parent | ad9bdf6e3805515b0726de2c94db24ffe6aa108e (diff) |
added for dir emulation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@326 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/Makefile')
-rw-r--r-- | uisimulator/x11/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index fd53196784..9d73305c57 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -29,7 +29,7 @@ DEBUG = -g DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR -DHAVE_LCD_BITMAP -DHAVE_RECORDER_KEYPAD LDFLAGS = -lX11 -lm -lXt -lXmu -lnsl -INCLUDES = -I$(DRIVERS) -I$(FIRMWAREDIR) +INCLUDES = -I. -I$(DRIVERS) -I$(FIRMWAREDIR) UNAME := $(shell uname) ifeq ($(UNAME),Linux) @@ -44,7 +44,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) #SRCS = $(wildcard *.c) SRCS = screenhack.c uibasic.c resources.c visual.c lcd.c lcd-x11.c \ - button-x11.c chartables.c tetris.c app.c + button-x11.c chartables.c tetris.c app.c tree.c io.c OBJS := $(SRCS:c=o) @@ -63,6 +63,9 @@ tetris.o: $(APPDIR)/tetris.c app.o: $(APPDIR)/app.c $(CC) $(CFLAGS) -c $< -o $@ +tree.o: $(APPDIR)/tree.c + $(CC) $(CFLAGS) -c $< -o $@ + lcd.o: $(DRIVERS)/lcd.c $(CC) $(CFLAGS) -c $< -o $@ |