~ubuntu-branches/ubuntu/intrepid/tcm/intrepid

« back to all changes in this revision

Viewing changes to lib/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all:
 
2
 
 
3
config:
 
4
 
 
5
install:
 
6
        if test ! -d $(TCM_INSTALL_LIB) -o ! -d $(TCM_INSTALL_SHARE) -o ! -d $(CONFIG_INSTALL); then\
 
7
                mkdir -p $(TCM_INSTALL_SHARE);\
 
8
                mkdir -p $(CONFIG_INSTALL);\
 
9
                $(CHMOD) 755 $(TCM_INSTALL_SHARE) $(CONFIG_INSTALL); fi
 
10
        $(TCM_INSTALL_CMD) TCM banner.ps colorrgb.txt tcm.conf $(CONFIG_INSTALL)
 
11
        $(TCM_INSTALL_CMD) help $(TCM_INSTALL_SHARE)
 
12
        if test -f libglobal.so; then\
 
13
                mkdir -p $(TCM_INSTALL_LIB);\
 
14
                $(CHMOD) 755 $(TCM_INSTALL_LIB);\
 
15
                $(TCM_INSTALL_CMD) lib*.so $(TCM_INSTALL_LIB);\
 
16
        fi
 
17
clean:
 
18
        $(RM) lib*.so
 
19
        $(RM) lib*.a
 
20
        $(RM) help/CHANGELOG
 
21
        $(RM) help/COPYING
 
22
 
 
23
-include $(TCM_HOME)/src/Config.tmpl