-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
42 lines (34 loc) · 1.04 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
42
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I auxdir
SUBDIRS = auxdir src testsuite doc etc
pkginclude_HEADERS = \
slurm/pmi.h \
slurm/slurm.h \
slurm/slurmdb.h \
slurm/slurm_errno.h \
slurm/smd_ns.h \
slurm/spank.h
MAINTAINERCLEANFILES = \
aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
ltconfig ltmain.sh missing mkinstalldirs \
slurm/slurm.h \
stamp-h.in
distclean-local:
-(cd $(top_srcdir) && rm -rf autom4te*.cache autoscan.*)
-(cd $(top_srcdir) && rm -rf $(PACKAGE)-*)
mrproper: distclean-local clean
-(cd $(top_srcdir) && rm -rf autom4te.cache config.h config.log)
-(cd $(top_srcdir) && rm -rf config.status libtool stamp-h1)
-(cd $(top_srcdir)/auxdir && rm -rf mkinstalldirs)
-(cd $(top_srcdir)/slurm && rm -rf stamp-h2 slurm.h)
-find $(top_srcdir)/src -name "Makefile" -exec rm {} \;
-find $(top_srcdir) -depth -name ".deps" -exec rm -rf {} \;
contrib:
@cd contribs && \
$(MAKE) && \
cd ..;
install-contrib:
@cd contribs && \
$(MAKE) DESTDIR=$(DESTDIR) install && \
cd ..;