File: Makefile

package info (click to toggle)
ostree-push 0.20170708%2Bgitabc601f-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 172 kB
  • sloc: python: 930; sh: 81; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PREFIX = /usr/local
BINDIR = $(PREFIX)/bin

MKDIR_P = mkdir -p
INSTALL = install
LN_S = ln -s
RM = rm

all:
clean:
check:

install:
	$(MKDIR_P) $(DESTDIR)$(BINDIR)
	$(INSTALL) ostree-push $(DESTDIR)$(BINDIR)/ostree-push
	$(LN_S) -f ostree-push $(DESTDIR)$(BINDIR)/ostree-receive

uninstall:
	$(RM) -f $(DESTDIR)$(BINDIR)/ostree-push
	$(RM) -f $(DESTDIR)$(BINDIR)/ostree-receive