mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Define standard compilation rules
|
|
|
|
$(eval $(call rule_for, \
|
|
AS, %.o, %.s, \
|
|
$$(CC) $$(SFLAGS) -c $$< -o $$@ \
|
|
))
|
|
|
|
$(eval $(call rule_for, \
|
|
CC, %.o, %.c, \
|
|
$$(CC) $$(CFLAGS) $$(SFLAGS) -c $$< -o $$@, \
|
|
with_local_version \
|
|
))
|
|
|
|
$(eval $(call rule_for, \
|
|
CXX, %.o, %.cpp, \
|
|
$$(CXX) $$(CXXFLAGS) $$(SFLAGS) -c $$< -o $$@, \
|
|
with_local_version \
|
|
))
|
|
|
|
$(eval $(call rule_for, \
|
|
OCC, %.o, %.m, \
|
|
$$(CC) $$(CFLAGS) $$(SFLAGS) -c $$< -o $$@ \
|
|
))
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
# Work around command-line length limit
|
|
# On Msys2 the max command line is 32 000 characters. Our standard LD command
|
|
# can be longer than that because we have quite a lot of object files. To work
|
|
# around this issue, we write the object list in a "target.objs" file, and tell
|
|
# the linker to read its arguments from this file.
|
|
$(eval $(call rule_for, \
|
|
LD, %.$$(EXE), , \
|
|
echo $$^ > $$@.objs && $$(LD) @$$@.objs $$(LDFLAGS) -o $$@ && rm $$@.objs \
|
|
))
|
|
else
|
|
$(eval $(call rule_for, \
|
|
LD, %.$$(EXE), , \
|
|
$$(LD) $$^ $$(LDFLAGS) -o $$@ \
|
|
))
|
|
endif
|
|
|
|
$(eval $(call rule_for, \
|
|
WINDRES, %.o, %.rc, \
|
|
$$(WINDRES) $$< -O coff -o $$@ \
|
|
))
|