forked from jhallen/joe-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
25 lines (18 loc) · 1.08 KB
/
Makefile.am
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
AUTOMAKE_OPTIONS = foreign
SUBDIRS = man rc po syntax joe
EXTRA_DIST = COPYING docs/hacking.md ChangeLog NEWS.md docs/README.old README.md INSTALL INSTALL.AMIGA \
docs/help-system.html charmaps/klingon.in \
cygbuild setup.hint autojoe docs/man.md
sysconf_joedir = $(sysconfdir)/joe
data_joedir = $(datadir)/joe
data_charmapsdir = $(data_joedir)/charmaps
data_charmaps_DATA = charmaps/klingon
data_docdir = $(docdir)
data_doc_DATA = README.md docs/README.old docs/man.md ChangeLog docs/hacking.md NEWS.md
install-exec-hook:
rm -f $(DESTDIR)$(bindir)/jmacs $(DESTDIR)$(bindir)/jstar $(DESTDIR)$(bindir)/rjoe $(DESTDIR)$(bindir)/jpico
rm -f $(DESTDIR)$(bindir)/jmacs.exe $(DESTDIR)$(bindir)/jstar.exe $(DESTDIR)$(bindir)/rjoe.exe $(DESTDIR)$(bindir)/jpico.exe
for i in jmacs jstar rjoe jpico ; do $(LN_S) joe $(DESTDIR)$(bindir)/$$i ; done
uninstall-local:
rm -f $(DESTDIR)$(bindir)/jmacs $(DESTDIR)$(bindir)/jstar $(DESTDIR)$(bindir)/rjoe $(DESTDIR)$(bindir)/jpico
rm -f $(DESTDIR)$(bindir)/jmacs.exe $(DESTDIR)$(bindir)/jstar.exe $(DESTDIR)$(bindir)/rjoe.exe $(DESTDIR)$(bindir)/jpico.exe