Makefile
829 Bytes
#
# Makefile for diags/include, to install header files under /usr/include.
#
include $(ROOT)/usr/include/make/commondefs
#
# Public header files, shipped to customers and used by almost everyone.
# Try to keep these alphabetized, to avoid duplicates and ease searches.
# These are in alpahbetical order!
#
PUBLIC_HFILES=tinymon.h
#
# List of headers that only system software utilities need
# These are public within SGI for internal development of other ISM's
# but are not shipped to customers.
#
FRIEND_HFILES=diag.h ide.h dbg_comm.h
HPUT=$(INSTALL) -m 444 -F /usr/include/ide
default:
COMMONPREF=gfxcoinc
include $(COMMONRULES)
headers: install
exports:
install $(COMMONTARGS): $(COMMONPREF)$$@ $(_FORCE)
$(COMMONPREF)install: $(_FORCE)
$(HPUT) $(FRIEND_HFILES)
$(INSTALL) -m 444 -F /usr/include $(PUBLIC_HFILES)