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

« back to all changes in this revision

Viewing changes to bin/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
TCM_INSTALL_BIN=$(TCM_INSTALL_DIR)/bin
 
2
 
 
3
all:
 
4
 
 
5
config:
 
6
 
 
7
install:
 
8
        @if test $(TCM_COMPILER) = gcc; then\
 
9
                TCM_HOME=$(TCM_HOME) ./linkx; fi
 
10
        if test ! -d $(TCM_INSTALL_BIN); then\
 
11
                mkdir -p $(TCM_INSTALL_BIN);\
 
12
                $(CHMOD) 755 $(TCM_INSTALL_BIN); \
 
13
                fi
 
14
        $(TCM_INSTALL_CMD) psf t* $(TCM_INSTALL_BIN)
 
15
 
 
16
clean:
 
17
        $(RM) t* c*
 
18
 
 
19
-include $(TCM_HOME)/src/Config.tmpl