mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
141af0148c
Unfortunately, the copyright is somewhat restrictive, so we cannot make a package out of it. The author seem no longer to be reachable under the provided mail address.
41 lines
944 B
Plaintext
41 lines
944 B
Plaintext
*** Makefile.orig Thu Mar 30 20:04:11 1989
|
|
--- Makefile Mon Jun 19 22:15:57 1995
|
|
***************
|
|
*** 1,7 ****
|
|
# Makefile for Uzap.
|
|
! BINDIR = /usr/local
|
|
! MANDIR = /usr/man/manl
|
|
! MSECT = l
|
|
|
|
uzap: uzap.o edit.o search.o screen.o
|
|
cc -O uzap.o edit.o search.o screen.o -lcurses -ltermcap -o uzap
|
|
--- 1,9 ----
|
|
# Makefile for Uzap.
|
|
! BINDIR = ${PREFIX}/bin/
|
|
! MANDIR = ${PREFIX}/man/man1
|
|
! MSECT = 1
|
|
!
|
|
! all: uzap
|
|
|
|
uzap: uzap.o edit.o search.o screen.o
|
|
cc -O uzap.o edit.o search.o screen.o -lcurses -ltermcap -o uzap
|
|
***************
|
|
*** 19,26 ****
|
|
cc -c -O screen.c
|
|
|
|
install: uzap
|
|
! install -s -m 771 uzap $(BINDIR)
|
|
! install -c -m 664 uzap.man $(MANDIR)/uzap.$(MSECT)
|
|
|
|
clean:
|
|
! rm -f *.o core uzap
|
|
--- 21,28 ----
|
|
cc -c -O screen.c
|
|
|
|
install: uzap
|
|
! install -s -m 755 -o bin -g bin uzap $(BINDIR)
|
|
! install -c -m 644 -o bin -g bin uzap.man $(MANDIR)/uzap.$(MSECT)
|
|
|
|
clean:
|
|
! rm -f *.o core *.core uzap
|