mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
20 lines
431 B
Plaintext
20 lines
431 B
Plaintext
--- makefile.orig Mon Apr 12 08:49:40 1999
|
|
+++ makefile Fri Feb 18 10:56:04 2000
|
|
@@ -6,11 +6,14 @@
|
|
#
|
|
###############################################################################
|
|
|
|
+.if ${MACHINE_ARCH} == "alpha"
|
|
+LDADD= -lio
|
|
+.endif
|
|
+
|
|
all: mpmf20
|
|
|
|
mpmf20: app.cpp mpmf20.cpp
|
|
- g++ -O1 -o mpmf20 app.cpp mpmf20.cpp
|
|
- chmod +s mpmf20
|
|
+ ${CXX} ${CXXFLAGS} -o mpmf20 app.cpp mpmf20.cpp ${LDADD}
|
|
|
|
clean:
|
|
rm -f mpmf20
|