forked from teamnwah/openmw-tes3coop
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
|