** Only openssl and bz2 (for stuffextract) left as external dependencies, zlib, zthread and irrlicht are compiled from dep folder ** Irrlicht upgraded to version 1.5 ** Various fixes to make GCC not complain ** to compile: autoreconf -if && ./compile -prefix=full_path_to_bin_directory && make ** Only issue: rename dep/openssl otherwise compiler will complain - too late to figure out now.
9 lines
542 B
Makefile
9 lines
542 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
SUBDIRS = StormLib
|
|
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -Wall
|
|
## Build pseuwow
|
|
bin_PROGRAMS = stuffextract
|
|
stuffextract_SOURCES = dbcfile.cpp Locale.cpp MPQFile.cpp MPQHelper.cpp StuffExtract.cpp
|
|
|
|
stuffextract_LDADD = StormLib/libstormlib.a ../../shared/Auth/libauth.a ../../shared/libshared.a -lbz2
|