diff options
Diffstat (limited to 'emulators/aftp/files/patch-Makefile')
-rw-r--r-- | emulators/aftp/files/patch-Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/emulators/aftp/files/patch-Makefile b/emulators/aftp/files/patch-Makefile new file mode 100644 index 000000000000..74c0c99fd44a --- /dev/null +++ b/emulators/aftp/files/patch-Makefile @@ -0,0 +1,37 @@ +*** 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} +! PREFIX?= /usr/local +! +! all: aftp + + aftp: $(OBJS) +! ${CC} -o aftp $(OBJS) + + .c.o: +! ${CC} -c ${CFLAGS} $< +! +! install: all +! ${BSD_INSTALL_PROGRAM} aftp ${DESTDIR}${PREFIX}/bin + + clean: + rm -f $(OBJS) aftp |