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
46 lines
826 B
Text
46 lines
826 B
Text
OBJ=obj.msc
|
|
INC=include
|
|
SRC=src
|
|
ENETLIB=libenet.lib
|
|
|
|
!ifdef DEBUG
|
|
# debugging options
|
|
flags_cl=/Od /Zi
|
|
flags_link=/DEBUG
|
|
flags_lib=
|
|
!else
|
|
# release options
|
|
flags_cl=/Ox /GL /arch:SSE
|
|
flags_link=/RELEASE /LTCG
|
|
flags_lib=/LTCG
|
|
!endif
|
|
|
|
CC=cl
|
|
LINK=link /opt:ref /nologo
|
|
|
|
CFLAGS=$(CFLAGS) /nologo /MT /J $(flags_cl) $(TARGETOPTS) /I$(INC) /I$(SRC)
|
|
!ifdef DEBUG
|
|
CFLAGS=$(CFLAGS) /DDEBUGGINGAIDS
|
|
!endif
|
|
|
|
CFLAGS=$(CFLAGS) /DRENDERTYPE$(RENDERTYPE)=1 /D "_CRT_SECURE_NO_DEPRECATE" /W2 /Iinclude/msvc /DWIN32
|
|
|
|
OBJECTS=$(OBJ)\callbacks.o \
|
|
$(OBJ)\host.o \
|
|
$(OBJ)\list.o \
|
|
$(OBJ)\packet.o \
|
|
$(OBJ)\peer.o \
|
|
$(OBJ)\protocol.o \
|
|
$(OBJ)\win32.o \
|
|
$(OBJ)\compress.o
|
|
|
|
{$(SRC)}.c{$(OBJ)}.o:
|
|
$(CC) /c $(CFLAGS) /Fo$@ $<
|
|
|
|
enet: $(ENETLIB)
|
|
$(ENETLIB): $(OBJECTS)
|
|
lib $(flags_lib) /out:$@ /nologo $**
|
|
|
|
clean:
|
|
-del /Q $(OBJ)\* $(ENETLIB)
|
|
|