mirror of
https://github.com/id-Software/DOOM-IOS2.git
synced 2026-03-20 17:10:05 +01:00
26 lines
762 B
Makefile
Executable File
26 lines
762 B
Makefile
Executable File
#
|
|
# Auto-generated sample makefile
|
|
#
|
|
# This makefile is intended for use with GNU make.
|
|
# Set the paths to the tools (CC, AR, LD, etc.)
|
|
#
|
|
|
|
vpath %.c host_src
|
|
|
|
CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
|
|
AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
|
|
LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
|
|
AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
|
|
|
|
%.o: %.c
|
|
$(CC) -c -O2 -o $@ -I host_src -D UNIFIED_DEBUG_MESSAGES -D EAS_FM_SYNTH -D _IMELODY_PARSER -D _RTTTL_PARSER -D _OTA_PARSER -D _WAVE_PARSER -D _REVERB_ENABLED -D _CHORUS_ENABLED $<
|
|
|
|
%.o: %.s
|
|
$(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
|
|
|
|
OBJS = eas_main.o eas_report.o eas_wave.o eas_hostmm.o eas_config.o
|
|
|
|
arm-fm-22k: $(OBJS)
|
|
$(LD) -o $@ $(OBJS) libarm-fm-22k.a -lm
|
|
|