16 lines
272 B
Makefile
16 lines
272 B
Makefile
TOPDIR = ../../..
|
|
-include $(TOPDIR)/config.mk
|
|
|
|
include ../Makefile.inc
|
|
|
|
all:
|
|
|
|
install:
|
|
install -d $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR)
|
|
install -m644 Kyuafile $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR)
|
|
|
|
uninstall:
|
|
-rm -f $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR)/Kyuafile
|
|
|
|
clean:
|