mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Sam Ravnborg <sam@ravnborg.org>
To: Linus Torvalds <torvalds@transmeta.com>, linux-kernel@vger.kernel.org
Subject: [PATCH] drivers/pci,hamradio,scsi,aic7xxx,video,zorro clean and mrproper files 4/6
Date: Tue, 10 Sep 2002 23:06:56 +0200	[thread overview]
Message-ID: <20020910230656.D18386@mars.ravnborg.org> (raw)
In-Reply-To: <20020910225530.A17094@mars.ravnborg.org>; from sam@ravnborg.org on Tue, Sep 10, 2002 at 10:55:30PM +0200

o Specify which files to be delted during clean
	- Intermidiate files
o Specify files to be deleted during mrproper
	- Firmware

Note:The patch for the pci makefile apply with an offset of 2 lines.

	Sam

diff -Nru a/drivers/char/Makefile b/drivers/char/Makefile
--- a/drivers/char/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/char/Makefile	Tue Sep 10 22:37:55 2002
@@ -100,6 +100,9 @@
 obj-$(CONFIG_DRM) += drm/
 obj-$(CONFIG_PCMCIA) += pcmcia/
 
+# Files generated that shall be removed upon make clean
+clean := consolemap_deftbl.c defkeymap.c qtronixmap.c
+
 include $(TOPDIR)/Rules.make
 
 $(obj)/consolemap_deftbl.c: $(src)/$(FONTMAPFILE)
diff -Nru a/drivers/net/hamradio/soundmodem/Makefile b/drivers/net/hamradio/soundmodem/Makefile
--- a/drivers/net/hamradio/soundmodem/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/net/hamradio/soundmodem/Makefile	Tue Sep 10 22:37:55 2002
@@ -19,6 +19,10 @@
 host-progs := gentbl
 HOST_LOADLIBES := -lm
 
+# Files generated that shall be removed upon make clean
+clean := sm_tbl_afsk1200.h sm_tbl_afsk2400_7.h sm_tbl_afsk2400_8.h \
+sm_tbl_afsk2666.h sm_tbl_psk4800.h sm_tbl_hapn4800.h sm_tbl_fsk9600.h
+
 include $(TOPDIR)/Rules.make
 
 # Dependencies on generates files need to be listed explicitly
diff -Nru a/drivers/pci/Makefile b/drivers/pci/Makefile
--- a/drivers/pci/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/pci/Makefile	Tue Sep 10 22:37:55 2002
@@ -33,6 +33,9 @@
 
 host-progs := gen-devlist
 
+# Files generated that shall be removed upon make clean
+clean := devlist.h classlist.h
+
 include $(TOPDIR)/Rules.make
 
 # Dependencies on generated files need to be listed explicitly
diff -Nru a/drivers/scsi/Makefile b/drivers/scsi/Makefile
--- a/drivers/scsi/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/scsi/Makefile	Tue Sep 10 22:37:55 2002
@@ -129,6 +129,10 @@
 cpqfc-objs	:= cpqfcTSinit.o cpqfcTScontrol.o cpqfcTSi2c.o \
 		   cpqfcTSworker.o cpqfcTStrigger.o
 
+# Files generated that shall be removed upon make clean
+clean := 53c8xx_d.h 53c8xx_u.h 53c7xx_d.h 53c7xx_u.h \
+         sim710_d.h sim710_u.h 53c700_d.h 53c700_u.h
+
 include $(TOPDIR)/Rules.make
 
 $(obj)/53c7,8xx.o: $(obj)/53c8xx_d.h $(obj)/53c8xx_u.h
@@ -159,4 +163,4 @@
 $(obj)/53c700_d.h: $(src)/53c700.scr $(src)/script_asm.pl
 	$(PERL) -s $(src)/script_asm.pl -ncr7x0_family $@ $(@:_d.h=_u.h) < $<
 
-endif
\ No newline at end of file
+endif
diff -Nru a/drivers/scsi/aic7xxx/Makefile b/drivers/scsi/aic7xxx/Makefile
--- a/drivers/scsi/aic7xxx/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/scsi/aic7xxx/Makefile	Tue Sep 10 22:37:55 2002
@@ -20,6 +20,14 @@
 
 #EXTRA_CFLAGS += -g
 
+# Files generated that shall be removed upon make clean
+clean := aic7xxx_seq.h aic7xxx_reg.h
+
+# Files generated that shall be removed upon make mrproper
+# The list includes all files listed for the clean: target in aicasm/Makefile
+mrproper := $(addprefix \
+aicasm/,aicasm_gram.c aicasm_scan.c y.tab.h aicdb.h y.output aicasm)
+
 include $(TOPDIR)/Rules.make
 
 # Dependencies for generated files need to be listed explicitly
diff -Nru a/drivers/video/Makefile b/drivers/video/Makefile
--- a/drivers/video/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/video/Makefile	Tue Sep 10 22:37:55 2002
@@ -118,6 +118,9 @@
 obj-$(CONFIG_FBCON_STI)           += fbcon-sti.o
 obj-$(CONFIG_FBCON_ACCEL)	  += fbcon-accel.o
 
+# Files generated that shall be removed upon make clean
+clean := promcon_tbl.c
+
 include $(TOPDIR)/Rules.make
 
 $(obj)/promcon_tbl.c: $(src)/prom.uni
diff -Nru a/drivers/zorro/Makefile b/drivers/zorro/Makefile
--- a/drivers/zorro/Makefile	Tue Sep 10 22:37:55 2002
+++ b/drivers/zorro/Makefile	Tue Sep 10 22:37:55 2002
@@ -9,6 +9,9 @@
 
 host-progs 		:= gen-devlist
 
+# Files generated that shall be removed upon make clean
+clean := devlist.h
+
 include $(TOPDIR)/Rules.make
 
 # Dependencies on generated files need to be listed explicitly

  parent reply	other threads:[~2002-09-10 21:02 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-10 20:55 [PATCH] kbuild: Make filelist for clean and mrproper distributed 0/6 Sam Ravnborg
2002-09-10 21:01 ` [PATCH] kbuild: clean and mrproper file list created dynamically 1/6 Sam Ravnborg
2002-09-10 21:03 ` [PATCH] atm: List files to be deleted during clean and mrproper 2/6 Sam Ravnborg
2002-09-10 21:05 ` [PATCH] sound/oss: Files to be deleted during mrproper 3/6 Sam Ravnborg
2002-09-10 21:06 ` Sam Ravnborg [this message]
2002-09-11  1:07   ` [PATCH] drivers/pci,hamradio,scsi,aic7xxx,video,zorro clean and mrproper files 4/6 Justin T. Gibbs
2002-09-11  5:12     ` Sam Ravnborg
2002-09-13 15:49       ` Andrew Bray
2002-09-13 17:37         ` ADMIN: DON'T try to be clever with email headers! Matti Aarnio
2002-09-13 23:16           ` Andrew Bray
2002-09-14 11:30             ` Matti Aarnio
2002-09-14 12:05           ` Matthias Andree
2002-09-13 18:00         ` [PATCH] drivers/pci,hamradio,scsi,aic7xxx,video,zorro clean and mrproper files 4/6 Sam Ravnborg
2002-09-10 21:09 ` [PATCH] scripts: Removed mrproper targets, they are now handled automagically 5/6 Sam Ravnborg
2002-09-10 21:11 ` [PATCH] Distibuted clean and mrproper handling 6/6 Sam Ravnborg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020910230656.D18386@mars.ravnborg.org \
    --to=sam@ravnborg.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@transmeta.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®