1
0
Files
irix-657m-src/eoe/cmd/tr/Makefile
2022-09-29 17:59:04 +03:00

20 lines
300 B
Makefile

include $(ROOT)/usr/include/make/commondefs
TARGETS=tr
CFILES=mtr.c str.c tr.c
LLDLIBS=-lw
default: $(TARGETS)
include $(COMMONRULES)
tr: $(OBJECTS)
$(CCF) $(OBJECTS) $(LDFLAGS) -o $@
test: tr
cd testsuite; $(MAKE) clean; $(MAKE) TR=../tr
install: default
$(INSTALL) -F /usr/bin $(TARGETS)