mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
16 lines
327 B
Makefile
16 lines
327 B
Makefile
GCC=g++
|
|
|
|
all: bsa_file_test ogre_archive_test
|
|
|
|
I_OGRE=$(shell pkg-config --cflags OGRE)
|
|
L_OGRE=$(shell pkg-config --libs OGRE)
|
|
|
|
bsa_file_test: bsa_file_test.cpp ../bsa_file.cpp
|
|
$(GCC) $^ -o $@
|
|
|
|
ogre_archive_test: ogre_archive_test.cpp ../bsa_file.cpp ../bsa_archive.cpp
|
|
$(GCC) $^ -o $@ $(I_OGRE) $(L_OGRE)
|
|
|
|
clean:
|
|
rm *_test
|