mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
a5f86a1b94
on FreeBSD/Alpha.
30 lines
580 B
Plaintext
30 lines
580 B
Plaintext
*** makefile.orig Sat Sep 18 15:19:53 1999
|
|
--- makefile Sat Sep 18 15:20:20 1999
|
|
***************
|
|
*** 6,15 ****
|
|
#
|
|
###############################################################################
|
|
|
|
all: rio
|
|
|
|
rio: app.cpp rio.cpp
|
|
! g++ -O1 -o rio app.cpp rio.cpp
|
|
chmod +s rio
|
|
|
|
clean:
|
|
--- 6,19 ----
|
|
#
|
|
###############################################################################
|
|
|
|
+ .if ${MACHINE_ARCH} == "alpha"
|
|
+ LDADD= -lio
|
|
+ .endif
|
|
+
|
|
all: rio
|
|
|
|
rio: app.cpp rio.cpp
|
|
! g++ -O1 -o rio app.cpp rio.cpp ${LDADD}
|
|
chmod +s rio
|
|
|
|
clean:
|