1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/biology/ortep3/files/Makefile.ortep3

17 lines
211 B
Makefile
Raw Normal View History

# Makefile for the ORTEP-III
TARGET= ortep3
SRC= ortep.f
OBJ= ortep.o
FFLAGS= -O2
LFLAGS=
all: ${OBJ}
${FC} ${LFLAGS} -o ${TARGET} ${OBJ}
ortep.o: ortep.f
${FC} ${FFLAGS} -c $<
clean:
rm -f *.o ${TARGET}