source: tags/old_import_filter/bin/Makefile

Last change on this file was 7769, checked in by westram, 13 years ago

merge from dev [7680] [7681] [7682] [7696] [7698]

  • misc build issues
    • more fixes to "make clean"
    • fix make-jobserver warnings (unwanted fallbacks to -j1)
    • print max. test duration of single lib-tests
    • create whitespace patch
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 651 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.