3dcam-headers/Makefile

51 lines
828 B
Makefile
Raw Normal View History

2021-11-28 19:59:05 +01:00
TARGET = 3dcam
2021-02-11 16:00:01 +01:00
2021-11-28 19:59:05 +01:00
.PHONY: all cleansub
all:
mkpsxiso -y ./config/3dcam.xml
cleansub:
$(MAKE) clean
rm -f $(TARGET).cue $(TARGET).bin
rm -f *.mcd *.frag *.lua *.vert
2021-06-23 19:25:12 +02:00
SRCS = src/main.c \
src/pad.c \
src/math.c \
src/camera.c \
src/physics.c \
src/graphics.c \
src/psx.c \
src/space.c \
2021-08-10 18:44:19 +02:00
src/sound.c \
2021-04-15 18:18:39 +02:00
levels/level0.c \
2021-04-14 15:56:14 +02:00
levels/level1.c \
2021-02-11 16:00:01 +01:00
TIM/home.tim \
2021-03-24 11:22:30 +01:00
TIM/cat.tim \
TIM/lara.tim \
TIM/bg_camPath.tim \
TIM/bg_camPath_001.tim \
TIM/bg_camPath_002.tim \
TIM/bg_camPath_003.tim \
TIM/bg_camPath_004.tim \
TIM/bg_camPath_005.tim \
2021-09-25 19:39:49 +02:00
TIM/ground.tim \
TIM/trees.tim \
TIM/woods.tim \
VAG/hello.vag \
VAG/poly.vag \
VAG/0_come.vag \
VAG/1_cuek.vag \
VAG/2_erro.vag \
VAG/3_hehe.vag \
VAG/4_m4a1.vag \
VAG/5_punc.vag \
VAG/7_wron.vag \
VAG/8_yooo.vag \
2021-04-03 15:18:40 +02:00
2021-04-14 15:56:14 +02:00
OVERLAYSCRIPT ?= overlay.ld
2021-04-15 18:18:39 +02:00
OVERLAYSECTION ?= .lvl0 .lvl1
2021-04-13 16:52:48 +02:00
2021-07-10 14:15:12 +02:00
include ./common.mk