mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-08 02:15:08 +00:00
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
--- Makefile.FreeBSD.orig Fri Jul 30 01:59:53 1999
|
|
+++ Makefile.FreeBSD Wed Sep 4 19:23:55 2002
|
|
@@ -6,7 +6,7 @@
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
|
|
-CC= cc
|
|
+CC?= cc
|
|
NAME= cwish
|
|
DEST= /usr/local/bin
|
|
MANDIR= /usr/local/man
|
|
@@ -34,18 +34,18 @@
|
|
#LFLAGS= -ldncurses -lmytinfo
|
|
|
|
#-- FreeBSD production ------------------------------------------------------
|
|
-CFLAGS= -O2 -Wall -pipe $(DEFS)
|
|
+CFLAGS+= -Wall $(DEFS)
|
|
LFLAGS= -lncurses -lmytinfo
|
|
|
|
|
|
CFILES= cwish.c files.c movement.c commandline.c rcinit.c \
|
|
fkeys.c paging.c cursor.c header.c history.c help.c \
|
|
- usrgrp.c showtime.c config.c chdir.c complete.c\
|
|
+ showtime.c config.c chdir.c complete.c\
|
|
system.c usage.c
|
|
|
|
OFILES= cwish.o files.o movement.o commandline.o rcinit.o \
|
|
fkeys.o paging.o cursor.o header.o history.o help.o \
|
|
- usrgrp.o showtime.o config.o chdir.o complete.o\
|
|
+ showtime.o config.o chdir.o complete.o\
|
|
system.o usage.o
|
|
|
|
HFILES= config.h control.h cwish.h rcinit.h version.h
|