21 lines
522 B
Makefile
21 lines
522 B
Makefile
DEMO_OBJ = \
|
|
$(LIB)/holly/core.o \
|
|
$(LIB)/holly/region_array.o \
|
|
$(LIB)/holly/background.o \
|
|
$(LIB)/holly/ta_fifo_polygon_converter.o \
|
|
$(LIB)/holly/framebuffer.o \
|
|
$(LIB)/sh7091/serial.o \
|
|
$(LIB)/sh7091/c_serial.o \
|
|
$(LIB)/maple/maple.o \
|
|
$(LIB)/printf/printf.o \
|
|
$(LIB)/printf/unparse.o \
|
|
$(LIB)/printf/parse.o \
|
|
src/demo/demo.o \
|
|
src/demo/graphics.o \
|
|
src/demo/input.o \
|
|
src/demo/ballistics.o \
|
|
src/physics/particle.o \
|
|
|
|
demo.elf: LDSCRIPT = $(LIB)/main.lds
|
|
demo.elf: $(START_OBJ) $(DEMO_OBJ) $(LIBGCC)
|