mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
915047b6af
This program is used to transfer data between a Psion Series 5mx (default) or Psion Series 5 to a Unix server. The ncp daemon is started to communicate with the Psion and an ftp like interface is provided by rfsv. PR: 15181 Submitted by: Maurice Castro <maurice@atum.castro.aus.net>
22 lines
452 B
Plaintext
22 lines
452 B
Plaintext
--- Makefile.orig Wed Jan 26 20:50:25 2000
|
|
+++ Makefile Wed Jan 26 20:53:10 2000
|
|
@@ -16,15 +16,15 @@
|
|
|
|
# Compiler & flags
|
|
INCLUDE=-I../utils
|
|
-CFLAGS= -Wall -g -O2
|
|
-CC=g++ $(CFLAGS) $(INCLUDE)
|
|
+CFLAGS+= -Wall
|
|
+CC=${CXX} $(CFLAGS) $(INCLUDE)
|
|
|
|
# Linker and flags
|
|
LIBDIR=-L../utils
|
|
# Solaris users uncomment this line instead of the next one
|
|
#LIBS=-lutils -lsocket -lnsl
|
|
LIBS=-lutils
|
|
-LD=g++ $(LIBDIR)
|
|
+LD=${CXX} $(LIBDIR)
|
|
|
|
# Archiver
|
|
AR=ar -cr
|