The Quake 2 tools as originally released under the GPL license.

This commit is contained in:
Travis Bradshaw
2012-01-31 15:22:13 -06:00
commit 707e849167
132 changed files with 52073 additions and 0 deletions

23
qe4/makefile Normal file
View File

@@ -0,0 +1,23 @@
TARGETOS=WINNT
!include <ntwin32.mak>
# This line allows NMAKE to work as well
all: gengl.exe
# Update the object file if necessary
gengl.obj: gengl.c gengl.h
$(cc) $(cflags) $(cvars) $(cdebug) $(cf) gengl.c
render.obj: render.c gengl.h
$(cc) $(cflags) $(cvars) $(cdebug) $(cf) render.c
gengl.res: gengl.rc genglrc.h
rc -r gengl.rc
gengl.exe: gengl.obj gengl.res render.obj
$(link) $(linkdebug) /NODEFAULTLIB $(guilflags) -out:gengl.exe \
gengl.obj render.obj gengl.res $(guilibsdll) opengl32.lib glu32.lib