File: Makefile

package info (click to toggle)
librnd 4.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,812 kB
  • sloc: ansic: 126,990; sh: 2,602; makefile: 2,145; awk: 7
file content (25 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
ROOT=../..
DEVDIR=$(DOCDIR)/developer

all:

install_all:
	$(SCCBOX) mkdir -p $(DEVDIR)/hid_remote
	$(SCCBOX) $(HOW) hid_remote/*.html hid_remote/*.svg $(DEVDIR)/hid_remote/
	$(SCCBOX) $(HOWF) packaging/librnd_packages.sh $(DATADIR)/librnd_packages.sh

install:
	$(MAKE) install_all HOW="install -f -d" HOWF="install -f"

linstall:
	$(MAKE) install_all HOW="install -f -l -d" HOWF="install -f -l"

uninstall:
	$(MAKE) install_all HOW="install -u" HOWF="install -u"

clean:

distclean:


include $(ROOT)/Makefile.conf