-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile.am
More file actions
18 lines (16 loc) · 727 Bytes
/
Makefile.am
File metadata and controls
18 lines (16 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SUBDIRS = src
EXTRA_DIST = TODO COPYING.LESSER m4/NOTES
ACLOCAL_AMFLAGS = -I m4 --install
dist_sysconf_DATA = asm.ini
# Create a binary distribution archive
dist-bin: all
@mkdir -p /dev/shm/asm-root
@$(MAKE) install-strip DESTDIR=/dev/shm/asm-root
@mkdir -p /dev/shm/$(distdir)-bin
@install -m 644 /dev/shm/asm-root/$(sysconfdir)/asm.ini /dev/shm/$(distdir)-bin/
@install -m 755 /dev/shm/asm-root/$(bindir)/armaservermonitor /dev/shm/$(distdir)-bin/
@install -m 755 /dev/shm/asm-root/$(libdir)/$(PACKAGE)/@ASMDLL_NAME@.so /dev/shm/$(distdir)-bin/
fakeroot tar -C /dev/shm -cvzf $(distdir)-bin.tgz $(distdir)-bin
@rm -rf /dev/shm/$(distdir)-bin
@$(MAKE) uninstall DESTDIR=/dev/shm/asm-root
@rm -rf /dev/shm/asm-root