Skip to content

Commit

Permalink
Merge branch 'MJ'
Browse files Browse the repository at this point in the history
  • Loading branch information
ahefner committed Apr 24, 2015
2 parents 421d74d + af9f777 commit 4aed5c4
Show file tree
Hide file tree
Showing 23 changed files with 11,452 additions and 6,586 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*.o
*~
\#*
Makefile
Makefile.in
config.h
config.log
config.status
stamp*
.deps
auto*
sdlquake
10 changes: 10 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
id Software

Sam Lantinga
https://www.libsdl.org/projects/quake/

Andy Hefner
https://github.com/ahefner/sdlquake

Mightyjo
https://github.com/Mightyjo/sdlquake
Empty file added ChangeLog
Empty file.
370 changes: 370 additions & 0 deletions INSTALL

Large diffs are not rendered by default.

26 changes: 18 additions & 8 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ sdlquake_SOURCES = \
d_sprite.c \
d_surf.c \
d_zpoint.c \
dosasm.S \
dosisms.h \
draw.c \
draw.h \
host.c \
Expand Down Expand Up @@ -102,7 +100,6 @@ sdlquake_SOURCES = \
r_sprite.c \
r_surf.c \
r_vars.c \
r_varsa.S \
render.h \
resource.h \
sbar.c \
Expand Down Expand Up @@ -135,7 +132,13 @@ sdlquake_SOURCES = \
world.h \
zone.c \
zone.h \
$(X86_SRCS) $(NONX86_SRCS)
$(MAYBE_X86_SRCS) $(NONX86_SRCS)

if MAKE_ASM
MAYBE_X86_SRCS = $(X86_SRCS)
else
MAYBE_X86_SRCS =
endif

X86_SRCS = \
snd_mixa.S \
Expand All @@ -152,6 +155,7 @@ X86_SRCS = \
r_aliasa.S \
r_drawa.S \
r_edgea.S \
r_varsa.S \
surf16.S \
surf8.S \
worlda.S
Expand All @@ -171,6 +175,8 @@ NULL_SRCS = \

DOS_SRCS = \
cd_audio.c \
dosasm.S \
dosisms.h \
dos_v2.c \
in_dos.c \
mplib.c \
Expand Down Expand Up @@ -247,6 +253,7 @@ GL_SRCS = \
glquake2.h

EXTRA_DIST = \
README \
README.SDL \
3dfx.txt \
Makefile.Solaris \
Expand Down Expand Up @@ -285,7 +292,10 @@ EXTRA_DIST = \
$(LNX_SRCS) \
$(SUN_SRCS) \
$(NEXT_SRCS) \
$(GL_SRCS)

dist-hook:
cp -rp data docs dxsdk gas2masm kit scitech $(distdir)/
$(GL_SRCS) \
data \
docs \
dxsdk \
gas2masm \
kit \
scitech
Loading

0 comments on commit 4aed5c4

Please sign in to comment.