Last change
on this file since 693 was
673,
checked in by guerin, 9 years ago
|
raycast: initial port
Raycast is a small game that looks like Wolfenstein 3D. I created
it for my SESI project, on a Cortex M4 devboard.
Imported from
github.com/libcg/tiva-c/tree/master/boards/dk-tm4c129x/upmc_raycast
|
File size:
416 bytes
|
Rev | Line | |
---|
[673] | 1 | |
---|
| 2 | APP_NAME = raycast |
---|
| 3 | |
---|
| 4 | OBJS = ctrl.o disp.o game.o main.o |
---|
| 5 | |
---|
| 6 | LIBS = -L../../build/libs -luser -lmath |
---|
| 7 | |
---|
| 8 | INCLUDES = -I../../giet_libs -I. -I../.. |
---|
| 9 | |
---|
| 10 | LIB_DEPS = ../../build/libs/libuser.a ../../build/libs/libmath.a |
---|
| 11 | |
---|
| 12 | appli.elf: $(OBJS) $(APP_NAME).ld $(LIBS_DEPS) |
---|
| 13 | $(LD) -o $@ -T $(APP_NAME).ld $(OBJS) $(LIBS) |
---|
| 14 | $(DU) -D $@ > $@.txt |
---|
| 15 | |
---|
| 16 | %.o: %.c |
---|
| 17 | $(CC) $(INCLUDES) $(CFLAGS) -c -o $@ $< |
---|
| 18 | |
---|
| 19 | clean: |
---|
| 20 | rm -f *.o *.elf *.elf.txt *.pyc |
---|
Note: See
TracBrowser
for help on using the repository browser.