summaryrefslogtreecommitdiff
path: root/emulators/aftp/files/patch-aa
blob: e4baa2231072fcf9eb200d9b05e3f0fe74f5d669 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
*** 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