summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile
index 70db1c1d28..7090ba1188 100644
--- a/uisimulator/win32/makefile
+++ b/uisimulator/win32/makefile
@@ -35,8 +35,8 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fd"Release/vc70.pdb"
35 35
36#SRCS = $(wildcard *.c) 36#SRCS = $(wildcard *.c)
37 37
38SRCS = lcd-win32.c tetris.c uisw32.c lcd.c button.c \ 38SRCS = lcd-win32.c tetris.c uisw32.c lcd.c button.c tree.c app.c \
39 chartables.c kernel.c Release/uisw32.res file-win32.c 39 chartables.c kernel.c Release/uisw32.res dir-win32.c
40 40
41OBJS = $(SRCS:.c=.obj) 41OBJS = $(SRCS:.c=.obj)
42 42
@@ -48,6 +48,15 @@ lcd.obj: $(DRIVERS)/lcd.c
48 48
49chartables.obj: $(FIRMWAREDIR)/chartables.c 49chartables.obj: $(FIRMWAREDIR)/chartables.c
50 $(CC) $(CFLAGS) -c $(FIRMWAREDIR)/chartables.c -ochartables.obj 50 $(CC) $(CFLAGS) -c $(FIRMWAREDIR)/chartables.c -ochartables.obj
51
52tetris.obj: ../tetris.c
53 $(CC) $(CFLAGS) -c ../tetris.c -otetris.obj
54
55tree.obj: ../tree.c
56 $(CC) $(CFLAGS) -c ../tree.c -otree.obj
57
58app.obj: ../app.c
59 $(CC) $(CFLAGS) -c ../app.c -oapp.obj
51 60
52clean: 61clean:
53 $(RM) *.obj \ No newline at end of file 62 $(RM) *.obj \ No newline at end of file