Merge pull request #572 from junghans/data2xmovie

tools/Makefile: remove remains of data2xmovie
This commit is contained in:
sjplimp 2017-07-13 11:27:46 -06:00 committed by GitHub
commit 983eb0e80d
1 changed files with 2 additions and 5 deletions

View File

@ -5,7 +5,7 @@
#
all:
$(MAKE) binary2txt chain micelle2d data2xmovie
$(MAKE) binary2txt chain micelle2d
binary2txt: binary2txt.o
g++ -g binary2txt.o -o binary2txt
@ -16,14 +16,11 @@ chain: chain.o
micelle2d: micelle2d.o
ifort micelle2d.o -o micelle2d
data2xmovie: data2xmovie.o
g++ -g data2xmovie.o -o data2xmovie
thermo_extract: thermo_extract.o
gcc -g thermo_extract.o -o thermo_extract
clean:
rm binary2txt chain micelle2d data2xmovie
rm binary2txt chain micelle2d
rm thermo_extract
rm *.o