14 lines
212 B
Makefile
14 lines
212 B
Makefile
#ident "$Revision: 1.1 $"
|
|
|
|
include $(ROOT)/usr/include/make/commondefs
|
|
|
|
CFILES =minrss.c
|
|
TARGETS =$(CFILES:.c=)
|
|
|
|
default:$(TARGETS)
|
|
|
|
include ${COMMONRULES}
|
|
|
|
install: default
|
|
$(INSTALL) -F /usr/sbin "$(TARGETS)"
|