This commit is contained in:
seta75D
2021-10-11 18:37:13 -03:00
commit ff309bfe1c
14130 changed files with 3180272 additions and 0 deletions

23
5bin/diff3/Makefile Normal file
View File

@@ -0,0 +1,23 @@
#
# @(#)Makefile 1.1 94/10/31 SMI; from S5R2 1.5
#
# diff3 make file
IFLAG =
CFLAGS = -O
LDFLAGS = $(IFLAG)
CC = /usr/5bin/cc
MAKE = make
.DEFAULT:
sccs get $@
diff3prog: diff3prog.c
$(CC) $(CFLAGS) $(LDFLAGS) -o diff3prog diff3prog.c
install: diff3prog diff3.sh
install -c diff3.sh $(DESTDIR)/usr/5bin/diff3
install -s diff3prog $(DESTDIR)/usr/5lib
clean:
rm -f diff3prog