mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2025-01-31 13:01:02 +00:00
ok, core links with no evil hacks
This commit is contained in:
parent
caddaeabef
commit
96826650c8
16 changed files with 10 additions and 5 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
quake2
|
|
@ -18,11 +18,11 @@
|
|||
|
||||
#endif
|
||||
|
||||
//#ifdef __i386__
|
||||
//#define id386 1
|
||||
//#else
|
||||
#ifdef __i386__
|
||||
#define id386 1
|
||||
#else
|
||||
#define id386 0
|
||||
//#endif
|
||||
#endif
|
||||
|
||||
// !!! must be kept the same as in d_iface.h !!!
|
||||
#define TRANSPARENT_COLOR 255
|
||||
|
|
6
makefile
6
makefile
|
@ -3,6 +3,8 @@ MAKEDEPS=$(CC) -MM $(CPPFLAGS) $< | sed -e 's!$*\.o:*!$*\.o $@:!g' > $@
|
|||
%.d: %.c
|
||||
$(MAKEDEPS)
|
||||
|
||||
CPPFLAGS=-DELF
|
||||
|
||||
sources=\
|
||||
client/cl_cin.c \
|
||||
client/cl_ents.c \
|
||||
|
@ -27,9 +29,11 @@ sources=\
|
|||
game/m_flash.c \
|
||||
game/q_shared.c \
|
||||
linux/cd_linux.c \
|
||||
linux/glob.c \
|
||||
linux/net_udp.c \
|
||||
linux/q_shlinux.c \
|
||||
linux/snd_linux.c \
|
||||
linux/snd_mixa.S \
|
||||
linux/sys_linux.c \
|
||||
linux/vid_so.c \
|
||||
linux/vid_menu.c \
|
||||
|
@ -51,7 +55,7 @@ sources=\
|
|||
server/sv_user.c \
|
||||
server/sv_world.c
|
||||
|
||||
objects=$(patsubst %.s,%.o,\
|
||||
objects=$(patsubst %.S,%.o,\
|
||||
$(patsubst %.c,%.o,\
|
||||
$(patsubst %.cc,%.o,\
|
||||
$(sources))))
|
||||
|
|
Loading…
Reference in a new issue