-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
43 lines (34 loc) · 1.03 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# $Id$
#
# Top-level Makefile.am for djmount
#
# Copyright (C) 2005 Rémi Turboult <[email protected]>
#
ACLOCAL_AMFLAGS = -I m4 -I gl/m4
CLEANFILES = IUpnpErrFile.txt IUpnpInfoFile.txt
SUBDIRS = gl
SUBDIRS += djmount
EXTRA_DIST = search_help.txt
#
# Note : 'libupnp' has a complete autoconf/automake system, which also handles
# an 'install' target. But we don't want to install libupnp, and we don't want
# to modify its build system either, so we just forward all 'install*' targets
# to './djmount' only.
#
AUTOMAKE_OPTIONS = -Wno-override
# note: do not try to declare all targets together (install install-data ...)
# or automake will not detect the override.
install:
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@
install-data:
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@
install-exec:
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@
install-info:
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@
installdirs:
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@
uninstall:
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@
uninstall-info :
$(MAKE) $(AM_MAKEFLAGS) -C djmount $@