mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
14 lines
233 B
Makefile
14 lines
233 B
Makefile
|
GCC=g++
|
||
|
|
||
|
all: ogre_manualresource_test
|
||
|
|
||
|
I_OGRE=$(shell pkg-config --cflags OGRE)
|
||
|
L_OGRE=$(shell pkg-config --libs OGRE)
|
||
|
|
||
|
ogre_manualresource_test: ogre_manualresource_test.cpp
|
||
|
$(GCC) $^ -o $@ $(I_OGRE) $(L_OGRE)
|
||
|
|
||
|
clean:
|
||
|
rm *_test
|
||
|
|