comparison Makefile.in @ 7603:1ddcf94fe9c9

(mostlyclean, clean, distclean, realclean) (extraclean): Don't act on man subdir if it doesn't exist.
author Richard M. Stallman <rms@gnu.org>
date Sat, 21 May 1994 07:18:39 +0000
parents 72d8287c8b16
children 022727dbe5f3
comparison
equal deleted inserted replaced
7602:136819b017fc 7603:1ddcf94fe9c9
384 mostlyclean: FRC.mostlyclean 384 mostlyclean: FRC.mostlyclean
385 (cd src; $(MAKE) $(MFLAGS) mostlyclean) 385 (cd src; $(MAKE) $(MFLAGS) mostlyclean)
386 (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean) 386 (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean)
387 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean) 387 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean)
388 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean) 388 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean)
389 -(cd man; $(MAKE) $(MFLAGS) mostlyclean) 389 -(cd man && $(MAKE) $(MFLAGS) mostlyclean)
390 390
391 ### `clean' 391 ### `clean'
392 ### Delete all files from the current directory that are normally 392 ### Delete all files from the current directory that are normally
393 ### created by building the program. Don't delete the files that 393 ### created by building the program. Don't delete the files that
394 ### record the configuration. Also preserve files that could be made 394 ### record the configuration. Also preserve files that could be made
399 clean: FRC.clean 399 clean: FRC.clean
400 (cd src; $(MAKE) $(MFLAGS) clean) 400 (cd src; $(MAKE) $(MFLAGS) clean)
401 (cd oldXMenu; $(MAKE) $(MFLAGS) clean) 401 (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
402 (cd lwlib; $(MAKE) $(MFLAGS) clean) 402 (cd lwlib; $(MAKE) $(MFLAGS) clean)
403 (cd lib-src; $(MAKE) $(MFLAGS) clean) 403 (cd lib-src; $(MAKE) $(MFLAGS) clean)
404 -(cd man; $(MAKE) $(MFLAGS) clean) 404 -(cd man && $(MAKE) $(MFLAGS) clean)
405 405
406 ### `distclean' 406 ### `distclean'
407 ### Delete all files from the current directory that are created by 407 ### Delete all files from the current directory that are created by
408 ### configuring or building the program. If you have unpacked the 408 ### configuring or building the program. If you have unpacked the
409 ### source and built the program without creating any other files, 409 ### source and built the program without creating any other files,
416 distclean: FRC.distclean 416 distclean: FRC.distclean
417 (cd src; $(MAKE) $(MFLAGS) distclean) 417 (cd src; $(MAKE) $(MFLAGS) distclean)
418 (cd oldXMenu; $(MAKE) $(MFLAGS) distclean) 418 (cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
419 (cd lwlib; $(MAKE) $(MFLAGS) distclean) 419 (cd lwlib; $(MAKE) $(MFLAGS) distclean)
420 (cd lib-src; $(MAKE) $(MFLAGS) distclean) 420 (cd lib-src; $(MAKE) $(MFLAGS) distclean)
421 (cd man; $(MAKE) $(MFLAGS) distclean) 421 (cd man && $(MAKE) $(MFLAGS) distclean)
422 ${top_distclean} 422 ${top_distclean}
423 423
424 424
425 ### `realclean' 425 ### `realclean'
426 ### Delete everything from the current directory that can be 426 ### Delete everything from the current directory that can be
436 realclean: FRC.realclean 436 realclean: FRC.realclean
437 (cd src; $(MAKE) $(MFLAGS) realclean) 437 (cd src; $(MAKE) $(MFLAGS) realclean)
438 (cd oldXMenu; $(MAKE) $(MFLAGS) realclean) 438 (cd oldXMenu; $(MAKE) $(MFLAGS) realclean)
439 (cd lwlib; $(MAKE) $(MFLAGS) realclean) 439 (cd lwlib; $(MAKE) $(MFLAGS) realclean)
440 (cd lib-src; $(MAKE) $(MFLAGS) realclean) 440 (cd lib-src; $(MAKE) $(MFLAGS) realclean)
441 -(cd man; $(MAKE) $(MFLAGS) realclean) 441 -(cd man && $(MAKE) $(MFLAGS) realclean)
442 ${top_distclean} 442 ${top_distclean}
443 443
444 ### This doesn't actually appear in the coding standards, but Karl 444 ### This doesn't actually appear in the coding standards, but Karl
445 ### says GCC supports it, and that's where the configuration part of 445 ### says GCC supports it, and that's where the configuration part of
446 ### the coding standards seem to come from. It's like distclean, but 446 ### the coding standards seem to come from. It's like distclean, but