source: trunk/Makefile.in @ 3749

Last change on this file since 3749 was 3749, checked in by gah, 11 years ago

fix Makefiles (one more time)

File size: 2.0 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11
12INSTALL         = @INSTALL@
13SHELL           = @SHELL@
14MKDIR_P         = @MKDIR_P@
15RM              = rm -f
16VPATH           = $(srcdir)
17
18build_date      := $(shell date +%Y%m%d)
19machine         := $(shell uname -m | sed 's/\ //')
20os              := $(shell uname -s)
21
22pkg_path        := $(shell dirname $(prefix))
23pkg_name        := $(shell basename $(prefix))
24SVN_VERSION     := $(shell svnversion $(srcdir))
25
26rappture_binary_tarfile = rappture-$(os)-$(machine)-$(build_date).tar.gz
27rappture_source_tarfile = rappture-src-$(build_date).tar.gz
28runtime_source_tarfile = rappture-runtime-src-$(build_date).tar.gz
29
30runtime_repo = https://nanohub.org/infrastructure/rappture-runtime/svn/trunk
31rappture_repo = https://nanohub.org/infrastructure/rappture/svn/trunk
32
33ENABLE_GUI      = @ENABLE_GUI@
34HAVE_FFMPEG     = @HAVE_FFMPEG_LIBS@
35TARGETS         = src lang lib
36
37ifneq ($(ENABLE_GUI),)
38  TARGETS += gui builder tester examples
39endif
40ifneq ($(HAVE_FFMPEG),)
41  TARGETS += video
42endif
43
44.PHONY: all test install clean distclean package distrib runtime-distrib \
45        $(TARGETS)
46
47all:
48        for i in $(TARGETS) ; do \
49          $(MAKE) -C $$i all || exit 1 ;\
50        done
51
52test:
53        $(MAKE) -C test all
54
55install:
56        for i in $(TARGETS) ; do \
57          $(MAKE) -C $$i install || exit 1 ;\
58        done
59
60clean:
61        for i in $(TARGETS) ; do \
62          $(MAKE) -C $$i clean || exit 1 ;\
63        done
64
65distclean: clean
66        $(RM) Makefile config.status config.log  *~
67        for i in $(TARGETS) ; do \
68          $(MAKE) -C $$i distclean || exit 1 ;\
69        done
70
71package:
72        tar -C $(pkg_path) -czlf $(rappture_binary_tarfile) $(pkg_name)
73
74distrib:
75        $(RM) -r exported
76        $(MKDIR_P) -m 0755 exported
77        (cd exported; svn export -q $(rappture_repo) rappture)
78        tar -C exported -czlf $(rappture_source_tarfile) rappture
79        $(RM) -r exported
80
81runtime-distrib:
82        $(RM) -r exported
83        $(MKDIR_P) -m 0755 exported
84        (cd exported; svn export -q $(runtime_repo) runtime)
85        tar -C exported -czlf $(runtime_source_tarfile) runtime
86        $(RM) -r exported
Note: See TracBrowser for help on using the repository browser.