summaryrefslogblamecommitdiff
path: root/emulators/aftp/files/patch-aa
blob: e4baa2231072fcf9eb200d9b05e3f0fe74f5d669 (plain) (tree)































                                                
                             





                                          
*** 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 ${CFLAGS} $<
! 
! install: all
! 	${INSTALL_BIN} aftp ${PREFIX}/bin/
  
  clean:
  	rm -f $(OBJS) aftp