-
Notifications
You must be signed in to change notification settings - Fork 54
/
Makefile.plain
46 lines (36 loc) · 1.35 KB
/
Makefile.plain
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
PACKAGE = jhbuild
VERSION = 0.1
CC ?= cc
CFLAGS ?= -Wall -O2
MAKE ?= make
-include Makefile.inc
all: include-check
@echo 'Run "make install" to install.'
include-check:
@test -f Makefile.inc || \
(echo "Makefile.inc doesn't exist. Please run autogen.sh"; exit 1)
update:
git pull --rebase
@if [ "x$(DISABLE_GETTEXT)" = x ]; then (cd po && $(MAKE) -f Makefile.plain); fi
install: include-check
@if [ "x$(DISABLE_GETTEXT)" = x ]; then (cd po && $(MAKE) -f Makefile.plain install); fi
@echo "Creating $(bindir)/jhbuild"
@mkdir -p $(bindir)
@sed -e "s,@jhbuilddir@,`pwd`,g" \
-e "s,@python@,$(python),g" \
-e "s,USE_CHECKOUT_SRC = False,USE_CHECKOUT_SRC = True," < \
scripts/jhbuild.in > $(bindir)/jhbuild
@chmod a+x $(bindir)/jhbuild
@echo "Creating $(desktopdir)/jhbuild.desktop"
@mkdir -p $(desktopdir)
@sed "s,^_,,g;s,^Exec=.*$$,Exec=$(bindir)/jhbuild gui," \
< jhbuild.desktop.in.in > $(desktopdir)/jhbuild.desktop
# if ~/bin/jbuild exists, it is most likely an old version, and it will
# not work; so rename it and install a symlink to the new version
# instead.
# (This comment is intentionally not indented, otherwise make prints it)
@if [ -e "$(HOME)/bin/jhbuild" ] && [ ! $(bindir) -ef $(HOME)/bin ]; then \
mv "$(HOME)/bin/jhbuild" "$(HOME)/bin/jhbuild.old" ; \
ln -s $(bindir)/jhbuild "$(HOME)/bin/jhbuild" ; \
fi
.PHONY: all update install