mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-23 17:53:56 +00:00
18 lines
424 B
Makefile
18 lines
424 B
Makefile
|
GCC=g++ -I../ -I../imp/
|
||
|
|
||
|
all: audiere_test ffmpeg_openal_test
|
||
|
|
||
|
L_FFMPEG=$(shell pkg-config --libs libavcodec libavformat)
|
||
|
L_OPENAL=$(shell pkg-config --libs openal)
|
||
|
|
||
|
L_AUDIERE=-laudiere
|
||
|
|
||
|
ffmpeg_openal_test: ffmpeg_openal_test.cpp ../imp/input_ffmpeg.cpp ../imp/output_openal.cpp
|
||
|
$(GCC) $^ -o $@ $(L_FFMPEG) $(L_OPENAL)
|
||
|
|
||
|
audiere_test: audiere_test.cpp ../imp/audiere_imp.cpp
|
||
|
$(GCC) $^ -o $@ $(L_AUDIERE)
|
||
|
|
||
|
clean:
|
||
|
rm *_test
|