14 lines
247 B
Makefile
14 lines
247 B
Makefile
include $(ROOT)/usr/include/make/commondefs
|
|
LLDOPTS=-Wl,-I,$(ROOTRLDNAME)
|
|
|
|
TARGETS=xargs
|
|
|
|
default: $(TARGETS)
|
|
|
|
include $(COMMONRULES)
|
|
|
|
install: default
|
|
$(INSTALL) -F /sbin $(TARGETS)
|
|
$(INSTALL) -F /usr/bin -lns ../../sbin/$(TARGETS) $(TARGETS)
|
|
|