This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
I still don't understand why you'd have the filelist depend on the source files at all. Seems to me the filelist should depend only on the makefile. The .class files and .lo files should depend on the source files and the filelist.
What do we gain by recreating the filelist after a source file changes?
+%.list: + @: $(shell $(mkinstalldirs) $(basename $@)) + @: $(call write_entries_to_file,$?,$@)
This creates a list of only those files that have changed. You want $^.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |