1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/emulators/aftp/files/patch-aa
Masafumi Max NAKANE 0ce807fe78 New port, aftp:
aftp manipulates and browses Apple II disk images.  It
supports both Apple  DOS 3.3,  ProDOS  and  XGS  images.
Both  binary  floppy  images  (.IIE)  and hard disk volume
(.HDV) images are also supported.

PR:		2816
Submitted by:	Joel Sutton <suttonj@interconnect.com.au>
1997-05-17 16:57:39 +00:00

40 lines
660 B
Plaintext

*** Makefile.orig Tue Jan 7 04:58:59 1997
--- Makefile Sun May 18 01:48:32 1997
***************
*** 1,11 ****
! OBJS=aftp.o pro.o dos.o
aftp: $(OBJS)
! gcc -o aftp $(OBJS)
.c.o:
! gcc -c $<
clean:
rm -f $(OBJS) aftp
--- 1,23 ----
+ # AFTP Version 1.0
+ # Makefile updated 20th Jan, 1996
! OBJS= aftp.o pro.o dos.o
! #CC_OPTS= -DDIRECTORY_COMMANDS
! CC= gcc ${CC_OPTS}
! INSTALL= install -c
! INSTALL_BIN= ${INSTALL} -s -o bin -g bin
! PREFIX?= /usr/local
!
! all: aftp
aftp: $(OBJS)
! ${CC} -o aftp $(OBJS)
.c.o:
! ${CC} -c $<
!
! install: all
! ${INSTALL_BIN} aftp ${PREFIX}/bin/
clean:
rm -f $(OBJS) aftp