comparison Makefile @ 26322:6377c105cb37

cosmetics: Merge shell commands into one line.
author diego
date Tue, 08 Apr 2008 22:08:23 +0000
parents 8306fe01e788
children a9911503e195
comparison
equal deleted inserted replaced
26321:8306fe01e788 26322:6377c105cb37
324 324
325 strip: 325 strip:
326 strip -s $(ALL_PRG) 326 strip -s $(ALL_PRG)
327 327
328 TAGS: 328 TAGS:
329 rm -f $@; \ 329 rm -f $@; ( find -name '*.[chS]' -print ) | xargs etags -a
330 ( find -name '*.[chS]' -print ) | xargs etags -a
331 330
332 tags: 331 tags:
333 rm -f $@; \ 332 rm -f $@; ( find -name '*.[chS]' -print ) | xargs ctags -a
334 ( find -name '*.[chS]' -print ) | xargs ctags -a;
335 333
336 # ./configure must be rerun if it changed 334 # ./configure must be rerun if it changed
337 config.mak: configure 335 config.mak: configure
338 @echo "############################################################" 336 @echo "############################################################"
339 @echo "####### Please run ./configure again - it's changed! #######" 337 @echo "####### Please run ./configure again - it's changed! #######"