28 lines
512 B
Makefile
28 lines
512 B
Makefile
#!smake
|
|
#
|
|
# $Id: Makefile,v 1.7 1999/04/30 01:44:04 kenmcd Exp $
|
|
#
|
|
|
|
PCP_SRC_DEPTH = ../..
|
|
include $(ROOT)/usr/include/make/commondefs
|
|
include $(PCP_SRC_DEPTH)/include/commondefs
|
|
|
|
WARNOFF =
|
|
|
|
C++FILES = unimplemented.c++ tv.c++ fdready.c++ timesrvr.c++
|
|
|
|
#if $(IRIX) == "IRIX5_3"
|
|
C++FILES += VkPixmap.c++
|
|
#endif
|
|
|
|
OBJECTS = $(C++FILES:S/.c++/.o/g)
|
|
|
|
LC++DEFS = $(DEBUG) -fullwarn $(WARNOFF) $(PCP_INC_PATH)
|
|
LC++OPTS = -nostdinc -woff 3262
|
|
|
|
default: $(C++FILES) $(OBJECTS)
|
|
|
|
include $(COMMONRULES)
|
|
|
|
install: default
|