mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
9143833fc8
No, seriously. Adds widescreen aware rotatesprite and works out half a dozen huge problems in the sound system, among other things. git-svn-id: https://svn.eduke32.com/eduke32@1658 1a8010ca-5511-0410-912e-c29ae57300e0
62 lines
1.2 KiB
Makefile
62 lines
1.2 KiB
Makefile
CC=gcc
|
|
OBJ=obj
|
|
OBJNAME?=libenet.a
|
|
PRETTY_OUTPUT?=1
|
|
EROOT?=build
|
|
RELEASE?=1
|
|
OPTLEVEL?=2
|
|
SRC=src
|
|
INC=include
|
|
|
|
include ../../$(EROOT)/Makefile.shared
|
|
|
|
ifneq (0,$(RELEASE))
|
|
# Debugging disabled
|
|
debug=-fomit-frame-pointer -funswitch-loops -O$(OPTLEVEL)
|
|
else
|
|
# Debugging enabled
|
|
debug=-ggdb -O0 -DDEBUGGINGAIDS
|
|
endif
|
|
|
|
ifneq (0,$(DEBUGANYWAY))
|
|
debug+=-ggdb
|
|
endif
|
|
|
|
CFLAGS=$(debug) -W -Wall -Wimplicit -Werror-implicit-function-declaration \
|
|
-funsigned-char -fno-strict-aliasing -DNO_GCC_BUILTINS -D_FORTIFY_SOURCE=2 \
|
|
-fjump-tables -fno-stack-protector
|
|
|
|
CPPFLAGS=-I$(INC) -I$(SRC)
|
|
|
|
OBJECTS=$(OBJ)/callbacks.o \
|
|
$(OBJ)/host.o \
|
|
$(OBJ)/list.o \
|
|
$(OBJ)/packet.o \
|
|
$(OBJ)/peer.o \
|
|
$(OBJ)/protocol.o \
|
|
$(OBJ)/compress.o
|
|
|
|
ifeq ($(PLATFORM),WINDOWS)
|
|
OBJECTS+= $(OBJ)/win32.o
|
|
OBJNAME=libenet_win32.a
|
|
OBJ=obj_win
|
|
else
|
|
OBJECTS+= $(OBJ)/unix.o
|
|
endif
|
|
|
|
# OBJECTS=$(SOURCES:%.c=$(OBJ)/%.o)
|
|
|
|
$(OBJNAME): $(OBJECTS)
|
|
$(AR) cr $@ $^
|
|
|
|
$(OBJECTS): $(OBJ)/%.o: $(SRC)/%.c $(INC)/enet/*.h
|
|
-mkdir -p $(OBJ)
|
|
$(COMPILE_STATUS)
|
|
if $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@; then $(COMPILE_OK); else $(COMPILE_FAILED); fi
|
|
|
|
ifeq ($(PRETTY_OUTPUT),1)
|
|
.SILENT:
|
|
endif
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f $(OBJECTS) $(OBJNAME)
|