diff options
| author | Felix Arends <edx@rockbox.org> | 2002-04-30 21:22:20 +0000 |
|---|---|---|
| committer | Felix Arends <edx@rockbox.org> | 2002-04-30 21:22:20 +0000 |
| commit | 0a7c37f4305d5573f4e395558680c5df43a2324a (patch) | |
| tree | 8e369f432ddc1dbabb23557d8352c5a13b7831df | |
| parent | 3d2999c911bb7b2d0c4fea8be0d54e228a1a6590 (diff) | |
| download | rockbox-0a7c37f4305d5573f4e395558680c5df43a2324a.zip rockbox-0a7c37f4305d5573f4e395558680c5df43a2324a.tar.gz rockbox-0a7c37f4305d5573f4e395558680c5df43a2324a.tar.bz2 rockbox-0a7c37f4305d5573f4e395558680c5df43a2324a.tar.xz | |
latest (working) makefile.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@353 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile index 70db1c1..7090ba1 100644 --- a/uisimulator/win32/makefile +++ b/uisimulator/win32/makefile @@ -35,8 +35,8 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fd"Release/vc70.pdb" #SRCS = $(wildcard *.c) -SRCS = lcd-win32.c tetris.c uisw32.c lcd.c button.c \ - chartables.c kernel.c Release/uisw32.res file-win32.c +SRCS = lcd-win32.c tetris.c uisw32.c lcd.c button.c tree.c app.c \ + chartables.c kernel.c Release/uisw32.res dir-win32.c OBJS = $(SRCS:.c=.obj) @@ -48,6 +48,15 @@ lcd.obj: $(DRIVERS)/lcd.c chartables.obj: $(FIRMWAREDIR)/chartables.c $(CC) $(CFLAGS) -c $(FIRMWAREDIR)/chartables.c -ochartables.obj + +tetris.obj: ../tetris.c + $(CC) $(CFLAGS) -c ../tetris.c -otetris.obj + +tree.obj: ../tree.c + $(CC) $(CFLAGS) -c ../tree.c -otree.obj + +app.obj: ../app.c + $(CC) $(CFLAGS) -c ../app.c -oapp.obj clean: $(RM) *.obj
\ No newline at end of file |