mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 11:59:15 -04:00
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>
39 lines
660 B
Text
39 lines
660 B
Text
*** 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
|