Initial commit of Command & Conquer Generals and Command & Conquer Generals Zero Hour source code.

This commit is contained in:
LFeenanEA 2025-02-27 17:34:39 +00:00
parent 2e338c00cb
commit 3d0ee53a05
No known key found for this signature in database
GPG key ID: C6EBE8C2EA08F7E0
6072 changed files with 2283311 additions and 0 deletions

View file

@ -0,0 +1,33 @@
###########################################################################
# TCP library makefile
##########################################################################
#Define cc to be your C compiler
CC = g++
CFLAGS = -gstabs ${INCLUDE} -D_REENTRANT #-DDEBUG
#This tells make how to go from a .cpp to a .o
.SUFFIXES: .cpp
.cpp.o:
${CC} ${CFLAGS} -c $<
INCLUDE = -I.. -I.
AR = ar -r
RM = rm -f
RANLIB = ranlib
############################################################################
#Dont mess with any of this stuff
OBJECTS = tcp.o udp.o packet.o field.o
LIBRARY = libwnet.a
all: $(LIBRARY)
$(LIBRARY): $(OBJECTS)
$(RM) $(LIBRARY)
$(AR) $(LIBRARY) $(OBJECTS)
$(RANLIB) $(LIBRARY)
clean:
- rm -f $(LIBRARY) $(OBJECTS) core