Files
lammps-gran-kokkos/tools/Makefile
2023-09-08 11:42:35 -04:00

38 lines
450 B
Makefile

# Makefile for serial tools
#
# Targets
#
all:
$(MAKE) binary2txt chain micelle2d stl_bin2txt
binary2txt: binary2txt.o
g++ -g binary2txt.o -o binary2txt
chain: chain.o
ifort chain.o -o chain
micelle2d: micelle2d.o
ifort micelle2d.o -o micelle2d
stl_bin2txt: stl_bin2txt.o
g++ -g stl_bin2txt.o -o stl_bin2txt
clean:
rm binary2txt chain micelle2d
rm *.o
#
# Rules
#
.cpp.o:
g++ -g -c $<
.c.o:
gcc -g -c $<
.f.o:
ifort -O -w -c $<