Modernize the Makefile and add support for Windows

This commit is contained in:
Yamagi Burmeister 2012-07-01 10:05:20 +02:00
parent d83a257bef
commit 7588bf17db
2 changed files with 72 additions and 26 deletions

View file

@ -2,7 +2,7 @@
# Makefile for the CTF game module for Quake II #
# #
# Just type "make" to compile the #
# - CTF Game (game.so) #
# - CTF Game (game.so / game.dll) #
# #
# Dependencies: #
# - None, but you need a Quake II to play. #
@ -10,28 +10,32 @@
# Yamagi Quake II ist recommended. #
# #
# Platforms: #
# - Linux #
# - FreeBSD #
# - Linux #
# - Windows #
# ----------------------------------------------------- #
# Check the OS type
# Detect the OS
ifdef SystemRoot
OSTYPE := Windows
else
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/)
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!)
ifneq ($(ARCH),i386)
ifneq ($(ARCH),x86_64)
ifeq ($(findstring $(ARCH), i386 x86_64 sparc64),)
$(error arch $(ARCH) is currently not supported)
endif
endif
# ----------
# The compiler
CC := gcc
# ----------
@ -54,7 +58,7 @@ CC := gcc
#
# -MMD to generate header dependencies.
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
# ----------
# When make is invoked by "make VERBOSE=1" print
# the compiler and linker commands.
# Cleanup
clean:
@echo "===> CLEAN"
@rm -Rf build release
ifdef VERBOSE
Q :=
else
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
ifeq ($(OSTYPE), Windows)
ctf:
@echo '===> Building game.so'
@mkdir -p release/
@echo "===> Building game.dll"
$(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
build/%.o: %.c
@echo '===> CC $<'
@mkdir -p $(@D)
@$(CC) -c $(CFLAGS) -o $@ $<
@echo "===> CC $<"
$(Q)mkdir -p $(@D)
$(Q)$(CC) -c $(CFLAGS) -o $@ $<
release/game.so : CFLAGS += -fPIC
endif
# ----------
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)
@echo '===> LD $@'
@$(CC) $(LDFLAGS) -o $@ $(CTF_OBJS)
@echo "===> LD $@"
$(Q)$(CC) $(LDFLAGS) -o $@ $(CTF_OBJS)
endif
# ----------

BIN
tools/mkdir.exe Normal file

Binary file not shown.