mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7c4ecfacd5
PR: 11649 Submitted by: Ryo MIYAMOTO <rmiya@cc.hirosaki-u.ac.jp>
17 lines
211 B
Makefile
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}
|