source: branches/1.3/Makefile.in @ 3740

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

fix Makefile

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 $(TARGETS)
45
46all:
47        for i in $(TARGETS) ; do \
48          $(MAKE) -C $$i all || exit 1 ;\
49        done
50
51test:
52        $(MAKE) -C test all
53
54install:
55        for i in $(TARGETS) ; do \
56          $(MAKE) -C $$i install || exit 1 ;\
57        done
58
59clean:
60        for i in $(TARGETS) ; do \
61          $(MAKE) -C $$i clean || exit 1 ;\
62        done
63
64distclean: clean
65        $(RM) Makefile config.status config.log  *~
66        for i in $(TARGETS) ; do \
67          $(MAKE) -C $$i distclean || exit 1 ;\
68        done
69
70package:
71        tar -C $(pkg_path) -czlf $(rappture_binary_tarfile) $(pkg_name)
72
73distrib:
74        $(RM) -r exported
75        $(MKDIR_P) -m 0755 exported
76        (cd exported; svn export -q $(rappture_repo) rappture)
77        tar -C exported -czlf $(rappture_source_tarfile) rappture
78        $(RM) -r exported
79
80runtime-distrib:
81        $(RM) -r exported
82        $(MKDIR_P) -m 0755 exported
83        (cd exported; svn export -q $(runtime_repo) runtime)
84        tar -C exported -czlf $(runtime_source_tarfile) runtime
85        $(RM) -r exported
Note: See TracBrowser for help on using the repository browser.