Attention anyone who has Linux and can compile something for me please?
Hey, I have CygWin and it won't compile this C++ project i have. It must be Linux 'cos it's gotta Makefile
if there's anyone out there who can compile it for me, please post back -or-
MSN Messenger: [email protected]
AOL Messenger: DamnedMoose
ICQ Number: 118284507
Thanks~
P.S - it's the compiler im sure, cos i have a friend who compiled it under Redhat 7.1
P.P.S - yes, i do know how to use Unix so it wasnt my fault :D
The code for the Makefile?
Do you mean the Makefile code or the actual project??
The makefile:
OBJS = gserver.o levels.o npcs.o otherstuff.o pascalstrings.o convertedclasses.o passwords.o libz.a
LLFLAGS =
SLFLAGS = -lcrypt -lmysqlclient
CFLAGS=
CC = g++ $(CFLAGS) -g -DNEWWORLD -DSERVERSIDENPCS -I/usr/include/mysql/
LD = g++
.SUFFIXES: .cpp
.cpp.o:
$(CC) -c $<
all: gserver
gserver: $(OBJS)
$(LD) -o gservernw $(OBJS) $(LLFLAGS) $(SLFLAGS)
clean:
-rm *.o *%