Bug 691128

Summary: Add distclean target
Product: GhostPCL Reporter: William Bader <williambader>
Component: PCL interpreterAssignee: Henry Stiles <henry.stiles>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P4    
Version: 8.70   
Hardware: PC   
OS: Linux   
Customer: Word Size: ---
Attachments: pdlmake.pat

Description William Bader 2010-02-22 08:03:50 UTC
ghostpdl-8.71 does not have a distclean target and the clean target leaves some
binary files.
Comment 1 William Bader 2010-02-22 08:06:19 UTC
Created attachment 5976 [details]
pdlmake.pat

Add a distclean target to the top level Makefile

distclean: clean
  rm -f language_switch/obj/mkromfs main/obj/mkromfs svg/obj/mkromfs
Comment 2 Hin-Tak Leung 2010-02-22 08:34:21 UTC
A better rule is:

     rm -f */*obj/*

the debug targets creates debugobj , etc.
Comment 3 Hin-Tak Leung 2010-05-02 03:13:00 UTC
Grabbing a Ralph's bugs.
Comment 4 Hin-Tak Leung 2010-08-02 00:32:27 UTC
Re-assigning bugs which still have work to do.
Comment 5 Henry Stiles 2010-08-03 06:05:56 UTC
fixed in revision 11953.  There is definitely work to do in the MSVC build for the clean target.  We'll save that for another day ;-).

make clean now removes mkromfs.  I didn't see the need for a distclean, eventually we'll do autoconf for ghostpdl and implement the standard targets and Hin-Tak's comment #2 is reasonable for a clean target action but I prefer to only remove program related files.