ok, core links with no evil hacks

This commit is contained in:
Bill Currie 2001-12-22 06:12:56 +00:00
parent caddaeabef
commit 96826650c8
16 changed files with 10 additions and 5 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
quake2

View file

@ -18,11 +18,11 @@
#endif #endif
//#ifdef __i386__ #ifdef __i386__
//#define id386 1 #define id386 1
//#else #else
#define id386 0 #define id386 0
//#endif #endif
// !!! must be kept the same as in d_iface.h !!! // !!! must be kept the same as in d_iface.h !!!
#define TRANSPARENT_COLOR 255 #define TRANSPARENT_COLOR 255

View file

@ -3,6 +3,8 @@ MAKEDEPS=$(CC) -MM $(CPPFLAGS) $< | sed -e 's!$*\.o:*!$*\.o $@:!g' > $@
%.d: %.c %.d: %.c
$(MAKEDEPS) $(MAKEDEPS)
CPPFLAGS=-DELF
sources=\ sources=\
client/cl_cin.c \ client/cl_cin.c \
client/cl_ents.c \ client/cl_ents.c \
@ -27,9 +29,11 @@ sources=\
game/m_flash.c \ game/m_flash.c \
game/q_shared.c \ game/q_shared.c \
linux/cd_linux.c \ linux/cd_linux.c \
linux/glob.c \
linux/net_udp.c \ linux/net_udp.c \
linux/q_shlinux.c \ linux/q_shlinux.c \
linux/snd_linux.c \ linux/snd_linux.c \
linux/snd_mixa.S \
linux/sys_linux.c \ linux/sys_linux.c \
linux/vid_so.c \ linux/vid_so.c \
linux/vid_menu.c \ linux/vid_menu.c \
@ -51,7 +55,7 @@ sources=\
server/sv_user.c \ server/sv_user.c \
server/sv_world.c server/sv_world.c
objects=$(patsubst %.s,%.o,\ objects=$(patsubst %.S,%.o,\
$(patsubst %.c,%.o,\ $(patsubst %.c,%.o,\
$(patsubst %.cc,%.o,\ $(patsubst %.cc,%.o,\
$(sources)))) $(sources))))