1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/biology/ortep3/files/Makefile.ortep3
Satoshi Taoka 7c4ecfacd5 The Oak Ridge Thermal Ellipsoid Plot Program for Crystal Structure
PR:		11649
Submitted by:	Ryo MIYAMOTO <rmiya@cc.hirosaki-u.ac.jp>
1999-05-19 13:37:59 +00:00

17 lines
211 B
Makefile

# 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}