35 lines
879 B
Makefile
35 lines
879 B
Makefile
FONT_OBJ = \
|
|
font/ter_u12n.data.o
|
|
|
|
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/platform/main.o \
|
|
src/platform/graphics.o \
|
|
src/platform/graphics_primitive.o \
|
|
src/platform/input.o \
|
|
src/platform/texture.o \
|
|
src/platform/font.o \
|
|
src/demo/ballistics.o \
|
|
src/demo/bridge.o \
|
|
src/demo/sailboat.o \
|
|
src/demo/collision.o \
|
|
src/physics/particle.o \
|
|
src/physics/particle_link.o \
|
|
src/physics/particle_contact.o \
|
|
src/physics/body.o \
|
|
src/physics/force_generator.o \
|
|
src/physics/collide.o
|
|
|
|
demo.elf: LDSCRIPT = $(LIB)/main.lds
|
|
demo.elf: $(START_OBJ) $(DEMO_OBJ) $(FONT_OBJ) $(LIBGCC)
|