1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/BBA1.5_platform/apps/public/ushare-1.1a/scripts/Makefile
2024-07-22 01:58:46 -03:00

27 lines
502 B
Makefile

ifeq (,$(wildcard ../config.mak))
$(error "config.mak is not present, run configure !")
endif
include ../config.mak
CONF_FILE = "ushare.conf"
INITD_FILE = "ushare"
EXTRADIST = $(CONF_FILE) $(INITD_FILE)
all:
clean:
distclean:
install:
$(INSTALL) -d $(sysconfdir)
$(INSTALL) -m 644 $(CONF_FILE) $(sysconfdir)
$(INSTALL) -d $(sysconfdir)/init.d
$(INSTALL) -m 755 $(INITD_FILE) $(sysconfdir)/init.d
dist-all:
cp $(EXTRADIST) $(SRCS) Makefile $(DIST)
.PHONY: clean disctlean install dist-all