| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/editors/bpatch/files/ |
Upload File : |
--- /dev/null Mon Mar 18 12:50:49 1996
+++ Makefile Mon Mar 18 19:30:47 1996
@@ -0,0 +1,39 @@
+# This may have to change on your system.
+# You may have to fiddle with various combinations of curses, termcap,
+# terminfo, etc. Good luck!
+PREFIX?= /usr/local
+BINDIR= ${PREFIX}/bin
+MANDIR= ${PREFIX}/man/man1
+
+LIBS = -lncurses
+#LIBS = -ltermlib
+#LIBS = -lterminfo
+#for sysV
+#LIBS = -lcurses
+
+# However you need getopt.
+#GETOPT = -lgetopt
+#not for sysV! (nor for some BSD)
+#GETOPT =
+
+# If you're running on a 4.[23] system, you probably want this.
+#WORK = -DMOD_HAX
+#sysV
+#WORK =
+
+#BSD or thereabouts
+CFLAGS+= $(WORK)
+#Microport sysV/AT, large model, for sdb debugger
+#CFLAGS = -g -Ml
+
+all: bpatch
+
+clean:
+ rm -f bpatch bpatch.o *.core
+
+bpatch: bpatch.o
+ $(CC) -o bpatch $(CFLAGS) bpatch.o $(GETOPT) $(LIBS)
+
+install: bpatch bpatch.1
+ $(BSD_INSTALL_PROGRAM) bpatch $(DESTDIR)$(BINDIR)
+ $(BSD_INSTALL_MAN) bpatch.1 $(DESTDIR)$(MANDIR)