Skip to content

Commit

Permalink
Create Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Leviathan authored and Leviathan committed Oct 21, 2015
1 parent 7bab374 commit 2361289
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Lsy_Lvm/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
hine:lvm_main.o lvm_lmachine.o lvm_assembler.o lvm_global.o
g++ -g lvm_main.o lvm_lmachine.o lvm_assembler.o lvm_global.o -o Lvmachine
lvm_main.o:lvm/lvm_main.cpp lvm/lvm_lmachine.h lvm/lvm_assembler.h
g++ -g -c lvm/lvm_main.cpp
lvm_lmachine.o:lvm/lvm_lmachine.cpp lvm/lvm_lmachine.h
g++ -g -c lvm/lvm_lmachine.cpp
lvm_assembler.o:lvm/lvm_assembler.cpp lvm/lvm_assembler.h
g++ -g -c lvm/lvm_assembler.cpp
lvm_global.o:lvm/lvm_global.cpp lvm/lvm_global.h
g++ -g -c lvm/lvm_global.cpp
clean:
rm -f lvm_main.o lvm_lmachine.o lvm_assembler.o lvm_global.o Lvmachine

0 comments on commit 2361289

Please sign in to comment.