mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
50376c6ede
featured and includes the ability to associate sounds with certain events. Requested by: Brent Kearneys <brent@kearneys.ca>
23 lines
550 B
Plaintext
23 lines
550 B
Plaintext
--- Makefile.orig Sat Dec 25 13:35:19 1999
|
|
+++ Makefile Sat Dec 25 13:36:05 1999
|
|
@@ -1,14 +1,14 @@
|
|
# macros and variables
|
|
-CC = gcc
|
|
-CPP = g++
|
|
+CC ?= gcc
|
|
+CPP = ${CXX}
|
|
|
|
PROG1 = center
|
|
-CFLAGS = #-g -Wall -DUNIX
|
|
+CFLAGS += #-g -Wall -DUNIX
|
|
|
|
-INCLUDE = -I/usr/include -I../ktools/include
|
|
+INCLUDE = -I../ktools/include
|
|
KTLIBDIR = ../ktools
|
|
LIB = $(KTLIBDIR)/libkonst.a
|
|
-LIBDIR = -L/usr/lib -L/usr/local/lib
|
|
+LIBDIR = -L${LOCALBASE}/lib -L${PREFIX}/lib
|
|
OBJS = centerICQ.o centerinfo.o phonebook.o icqlib.o center.o centersearch.o
|
|
|
|
# targets
|