The DOOM sources as originally released on December 23, 1997

This commit is contained in:
Travis Bradshaw
2012-01-31 15:27:37 -06:00
commit 4eb368a960
149 changed files with 59219 additions and 0 deletions

39
sndserv/Makefile Normal file
View File

@@ -0,0 +1,39 @@
##########################################################
#
# $Id:$
#
# $Log:$
#
#
CC=gcc
CFLAGS=-O -DNORMALUNIX -DLINUX
LDFLAGS=
LIBS=-lm
O=linux
all: $(O)/sndserver
clean:
rm -f *.o *~ *.flc
rm -f linux/*
# Target
$(O)/sndserver: \
$(O)/soundsrv.o \
$(O)/sounds.o \
$(O)/wadread.o \
$(O)/linux.o
$(CC) $(CFLAGS) $(LDFLAGS) \
$(O)/soundsrv.o \
$(O)/sounds.o \
$(O)/wadread.o \
$(O)/linux.o -o $(O)/sndserver $(LIBS)
echo make complete.
# Rule
$(O)/%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@