Skip to content

Commit

Permalink
makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
xrb92 authored Nov 23, 2019
1 parent 9af5a89 commit 1fc9d9b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
all: Train_cnn_multi Test_cnn
all: Train_cnn_multi Test_cnn Test_cnn_transE
Train_cnn_multi: Train_cnn_multi.cpp
g++ Train_cnn_multi.cpp -o Train_cnn_multi -O2 -lpthread
Test_cnn: Test_cnn.cpp
g++ Test_cnn.cpp -o Test_cnn -O2 -lpthread
Test_cnn_transE: Test_cnn_transE.cpp
g++ Test_cnn_transE.cpp -o Test_cnn_transE -O2 -lpthread
clean:
rm -rf Train_cnn_multi Test_cnn
rm -rf Train_cnn_multi Test_cnn Test_cnn_transE

0 comments on commit 1fc9d9b

Please sign in to comment.