source: branches/port5/bin/Makefile

Last change on this file was 5829, checked in by westram, 16 years ago
  • included some patches for OSX (thx to Matt Cottrell)
  • added global switch LINK_STATIC
  • added script which checks for tools needed to compile ARB
  • typo CCPLIB→CPPLIB
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 648 bytes
Line 
1help:
2        @echo   'Known targets:'
3        @echo   ''
4        @echo   '  all          create all links to binaries in: SH PERL_SCRIPTS'
5        @echo   '  develall     create links to arb_binaries in: SOURCE_TOOLS (development only)'
6        @echo   '  realclean:   remove all executables and links'
7        @echo   '  cleanlinks:  remove all links'
8
9all: cleanlinks
10        ln -s -f `find ../SH ../PERL_SCRIPTS -perm -100 ! -type d ! -name 'config*' -print` .
11
12develall: all
13        ln -s -f `find ../SOURCE_TOOLS -name "arb_*" -perm -100 ! -type d -print` .
14
15
16clean: realclean
17
18realclean:
19        find . -type l            -exec rm {} \;
20        find . -type f -perm -100 -exec rm {} \;
21
22
23cleanlinks:
24        find . -type l -exec rm {} \;
Note: See TracBrowser for help on using the repository browser.