| 77a37381 |
1 | # Makefile.project |
| 2 | # You specify target name, source files, flags for compiling/building here |
| 3 | |
| 4 | |
| 5 | TARGETBIN = linexec.exe |
| 6 | |
| 7 | # TODO: I had to make sure all sources are at the current directory, fix this |
| 8 | # in the future maybe. |
| 9 | # (You may want to symlink asmstuff.asm and asm.asm) |
| 10 | |
| 11 | SRCS = \ |
| 12 | StdAfx.cpp \ |
| 13 | gpio.cpp \ |
| 14 | memory.cpp \ |
| 15 | uart.cpp \ |
| 16 | boot.cpp \ |
| 17 | graphics.cpp \ |
| 18 | tester1.cpp \ |
| 19 | asmstuff.asm \ |
| 20 | asm.asm \ |
| 21 | tester1.rc |
| 22 | |
| 23 | # xscale vs strongarm |
| 24 | #CFLAGS = -DSTRONGARM=1 |
| 25 | LIBS = aygshell.lib |
| 26 | |
| c475935f |
27 | INCLUDE=d:\\msvc-arm\\include |
| 28 | LIB=d:\\msvc-arm\\lib |
| 77a37381 |
29 | |
| 30 | |