9 lines
No EOL
237 B
Makefile
Executable file
9 lines
No EOL
237 B
Makefile
Executable file
.PHONY: all libeasynn easynn_test
|
|
|
|
all: libeasynn easynn_test
|
|
|
|
libeasynn:
|
|
g++ -Wall src/*.cpp -fPIC -O -g -shared -o libeasynn.so
|
|
|
|
easynn_test: libeasynn
|
|
g++ -Wall easynn_test.cpp -g -lm -L. -Wl,-rpath=. -leasynn -o easynn_test
|