mirror of
https://github.com/id-Software/Quake-2-Tools.git
synced 2026-03-20 09:00:02 +01:00
The Quake 2 tools as originally released under the GPL license.
This commit is contained in:
23
qe4/makefile
Normal file
23
qe4/makefile
Normal 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
|
||||
Reference in New Issue
Block a user