mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-05 22:45:33 +00:00
9 lines
98 B
Makefile
9 lines
98 B
Makefile
GCC=g++
|
|
|
|
all: funcbind_test
|
|
|
|
funcbind_test: funcbind_test.cpp
|
|
$(GCC) $^ -o $@
|
|
|
|
clean:
|
|
rm *_test
|