8f182f968f
Requested by: kris
41 lines
1.4 KiB
Text
41 lines
1.4 KiB
Text
--- keycvt/makefile.orig Tue May 18 00:43:30 1993
|
|
+++ keycvt/makefile Sun Jul 21 17:32:13 2002
|
|
@@ -48,7 +48,7 @@
|
|
|
|
PROJ = keycvt
|
|
|
|
-CFLAGS = -c $(DEFINES) -O -I. $(CMDC) # Flags for compiler
|
|
+CFLAGS += -c $(DEFINES) -I. $(CMDC) # Flags for compiler
|
|
|
|
LFLAGS = -o $(PROJ) $(CMDL) # Flags for linker
|
|
|
|
@@ -60,6 +60,7 @@
|
|
LS = ls -l # Directory command
|
|
ECHO = echo # Echo to screen command
|
|
MAKE = make # The make command
|
|
+PREFIX ?= /usr/local
|
|
|
|
#****************************************************************************
|
|
#* *
|
|
@@ -71,7 +72,7 @@
|
|
@$(ECHO)
|
|
@$(ECHO) "To create KEYCVT you have to enter the Unix system type you want to build"
|
|
@$(ECHO) "KEYCVT for. Possible options are: aix (RS6000), aix370, aix386, convex,"
|
|
- @$(ECHO) "irix, hpux, isc, linux, mint, next, qnx, sun, svr4, ultrix, ultrix_old"
|
|
+ @$(ECHO) "freebsd, irix, hpux, isc, linux, mint, next, qnx, sun, svr4, ultrix, ultrix_old"
|
|
@$(ECHO) "(Ultrix 3.x or earlier), and uts4. If none of the above fit, try"
|
|
@$(ECHO) "'make generic', and send a copy of any changes necessary to the author,"
|
|
@$(ECHO) "pgut1@cs.aukuni.ac.nz"
|
|
@@ -128,6 +129,12 @@
|
|
|
|
convex:
|
|
@$(MAKE) keycvt CC="cc"
|
|
+
|
|
+freebsd:
|
|
+ @$(MAKE) $(PROJ)
|
|
+
|
|
+freebsd.install:
|
|
+ $(BSD_INSTALL_PROGRAM) $(PROJ) $(PREFIX)/bin
|
|
|
|
# Generic: Generic BSD-ish system running gcc. Can't continue, we really
|
|
# need user intervention here.
|