source: tags/1.3.0/Makefile.in @ 4790

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

fixes for R build, can now make clean, make

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