28 lines
418 B
Makefile
28 lines
418 B
Makefile
#!smake
|
|
#
|
|
# Makefile for SSDB headers
|
|
#
|
|
# "$Revision: 1.1 $"
|
|
#
|
|
include $(ROOT)/usr/include/make/commondefs
|
|
|
|
INCLDIR = /usr/include/sss
|
|
SWHEADER = $(INCLDIR)
|
|
SRCDIR = .
|
|
HEADERS = amevent.h amstructs.h
|
|
|
|
COMMONPREF = sss_
|
|
|
|
$(COMMONPREF)install default: $(TARGETS)
|
|
|
|
include $(COMMONRULES)
|
|
|
|
headers: install
|
|
|
|
exports:
|
|
|
|
clean clobber install: $(COMMONPREF)$$@
|
|
|
|
install: default
|
|
$(INSTALL) -F $(SWHEADER) -m 444 $(HEADERS)
|