mirror of
https://github.com/yquake2/ctf.git
synced 2025-02-19 18:50:53 +00:00
Modernize the Makefile and add support for Windows
This commit is contained in:
parent
d83a257bef
commit
7588bf17db
2 changed files with 72 additions and 26 deletions
98
Makefile
98
Makefile
|
@ -2,7 +2,7 @@
|
||||||
# Makefile for the CTF game module for Quake II #
|
# Makefile for the CTF game module for Quake II #
|
||||||
# #
|
# #
|
||||||
# Just type "make" to compile the #
|
# Just type "make" to compile the #
|
||||||
# - CTF Game (game.so) #
|
# - CTF Game (game.so / game.dll) #
|
||||||
# #
|
# #
|
||||||
# Dependencies: #
|
# Dependencies: #
|
||||||
# - None, but you need a Quake II to play. #
|
# - None, but you need a Quake II to play. #
|
||||||
|
@ -10,28 +10,32 @@
|
||||||
# Yamagi Quake II ist recommended. #
|
# Yamagi Quake II ist recommended. #
|
||||||
# #
|
# #
|
||||||
# Platforms: #
|
# Platforms: #
|
||||||
# - Linux #
|
|
||||||
# - FreeBSD #
|
# - FreeBSD #
|
||||||
|
# - Linux #
|
||||||
|
# - Windows #
|
||||||
# ----------------------------------------------------- #
|
# ----------------------------------------------------- #
|
||||||
|
|
||||||
# Check the OS type
|
# Detect the OS
|
||||||
|
ifdef SystemRoot
|
||||||
|
OSTYPE := Windows
|
||||||
|
else
|
||||||
OSTYPE := $(shell uname -s)
|
OSTYPE := $(shell uname -s)
|
||||||
|
endif
|
||||||
|
|
||||||
# Some plattforms call it "amd64" and some "x86_64"
|
# Detect the architecture
|
||||||
|
ifeq ($(OSTYPE), Windows)
|
||||||
|
# At this time only i386 is supported on Windows
|
||||||
|
ARCH := i386
|
||||||
|
else
|
||||||
|
# Some platforms call it "amd64" and some "x86_64"
|
||||||
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
||||||
|
endif
|
||||||
|
|
||||||
# Refuse all other plattforms as a firewall against PEBKAC
|
# Refuse all other platforms as a firewall against PEBKAC
|
||||||
# (You'll need some #ifdef for your unsupported plattform!)
|
# (You'll need some #ifdef for your unsupported plattform!)
|
||||||
ifneq ($(ARCH),i386)
|
ifeq ($(findstring $(ARCH), i386 x86_64 sparc64),)
|
||||||
ifneq ($(ARCH),x86_64)
|
|
||||||
$(error arch $(ARCH) is currently not supported)
|
$(error arch $(ARCH) is currently not supported)
|
||||||
endif
|
endif
|
||||||
endif
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
|
|
||||||
# The compiler
|
|
||||||
CC := gcc
|
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
|
@ -54,7 +58,7 @@ CC := gcc
|
||||||
#
|
#
|
||||||
# -MMD to generate header dependencies.
|
# -MMD to generate header dependencies.
|
||||||
CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \
|
CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \
|
||||||
-fPIC -Wall -pipe -g -MMD
|
-Wall -pipe -g -MMD
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
|
@ -67,25 +71,61 @@ LDFLAGS := -shared
|
||||||
all: ctf
|
all: ctf
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
|
# When make is invoked by "make VERBOSE=1" print
|
||||||
|
# the compiler and linker commands.
|
||||||
|
|
||||||
# Cleanup
|
ifdef VERBOSE
|
||||||
clean:
|
Q :=
|
||||||
@echo "===> CLEAN"
|
else
|
||||||
@rm -Rf build release
|
Q := @
|
||||||
|
endif
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
|
# Phony targets
|
||||||
|
.PHONY : all clean ctf
|
||||||
|
|
||||||
|
# ----------
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
ifeq ($(OSTYPE), Windows)
|
||||||
|
clean:
|
||||||
|
@echo "===> CLEAN"
|
||||||
|
@-rmdir /S /Q release build
|
||||||
|
else
|
||||||
|
clean:
|
||||||
|
@echo "===> CLEAN"
|
||||||
|
${Q}rm -Rf build release
|
||||||
|
endif
|
||||||
|
|
||||||
|
# ----------
|
||||||
|
|
||||||
# The ctf game
|
# The ctf game
|
||||||
|
ifeq ($(OSTYPE), Windows)
|
||||||
ctf:
|
ctf:
|
||||||
@echo '===> Building game.so'
|
@echo "===> Building game.dll"
|
||||||
@mkdir -p release/
|
$(Q)tools/mkdir.exe -p release
|
||||||
|
$(MAKE) release/game.dll
|
||||||
|
|
||||||
|
build/%.o: %.c
|
||||||
|
@echo "===> CC $<"
|
||||||
|
$(Q)tools/mkdir.exe -p $(@D)
|
||||||
|
$(Q)$(CC) -c $(CFLAGS) -o $@ $<
|
||||||
|
else
|
||||||
|
ctf:
|
||||||
|
@echo "===> Building game.so"
|
||||||
|
$(Q)mkdir -p release
|
||||||
$(MAKE) release/game.so
|
$(MAKE) release/game.so
|
||||||
|
|
||||||
build/%.o: %.c
|
build/%.o: %.c
|
||||||
@echo '===> CC $<'
|
@echo "===> CC $<"
|
||||||
@mkdir -p $(@D)
|
$(Q)mkdir -p $(@D)
|
||||||
@$(CC) -c $(CFLAGS) -o $@ $<
|
$(Q)$(CC) -c $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
|
release/game.so : CFLAGS += -fPIC
|
||||||
|
endif
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
CTF_OBJS_ = \
|
CTF_OBJS_ = \
|
||||||
|
@ -133,8 +173,14 @@ CTF_DEPS= $(CTF_OBJS:.o=.d)
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
|
ifeq ($(OSTYPE), Windows)
|
||||||
|
release/game.dll : $(CTF_OBJS)
|
||||||
|
@echo "===> LD $@"
|
||||||
|
$(Q)$(CC) $(LDFLAGS) -o $@ $(CTF_OBJS)
|
||||||
|
else
|
||||||
release/game.so : $(CTF_OBJS)
|
release/game.so : $(CTF_OBJS)
|
||||||
@echo '===> LD $@'
|
@echo "===> LD $@"
|
||||||
@$(CC) $(LDFLAGS) -o $@ $(CTF_OBJS)
|
$(Q)$(CC) $(LDFLAGS) -o $@ $(CTF_OBJS)
|
||||||
|
endif
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
BIN
tools/mkdir.exe
Normal file
BIN
tools/mkdir.exe
Normal file
Binary file not shown.
Loading…
Reference in a new issue