14 lines
200 B
Makefile
14 lines
200 B
Makefile
#ident "$Revision: 1.1 $"
|
|
|
|
include $(ROOT)/usr/include/make/commondefs
|
|
|
|
CFILES= sdiff.c
|
|
TARGETS= sdiff
|
|
|
|
default:$(TARGETS)
|
|
|
|
include $(COMMONRULES)
|
|
|
|
install: default
|
|
$(INSTALL) -F /usr/bin $(TARGETS)
|