2010-01-02 10:50:35 +00:00
|
|
|
GCC=g++
|
|
|
|
|
2013-03-04 23:45:25 +00:00
|
|
|
all: bsa_file_test ogre_archive_test
|
2010-01-02 13:04:31 +00:00
|
|
|
|
|
|
|
I_OGRE=$(shell pkg-config --cflags OGRE)
|
|
|
|
L_OGRE=$(shell pkg-config --libs OGRE)
|
2010-01-02 10:50:35 +00:00
|
|
|
|
|
|
|
bsa_file_test: bsa_file_test.cpp ../bsa_file.cpp
|
|
|
|
$(GCC) $^ -o $@
|
2010-01-02 11:43:19 +00:00
|
|
|
|
2010-01-12 13:46:44 +00:00
|
|
|
ogre_archive_test: ogre_archive_test.cpp ../bsa_file.cpp ../bsa_archive.cpp
|
2010-01-02 13:04:31 +00:00
|
|
|
$(GCC) $^ -o $@ $(I_OGRE) $(L_OGRE)
|
|
|
|
|
2010-01-02 12:10:39 +00:00
|
|
|
clean:
|
|
|
|
rm *_test
|