An error occurred fetching the project authors.
  1. 15 Dec, 2002 1 commit
  2. 10 Oct, 2002 1 commit
  3. 02 Oct, 2002 1 commit
  4. 23 Jul, 2002 1 commit
    • Geert Uytterhoeven's avatar
      [PATCH] M68k update (part 49) · adaf9410
      Geert Uytterhoeven authored
      Amiga Zorro bus updates
       - Bring APUS Zorro bus announcement in sync with the m68k version
       - Fix typo in Zorro device generator name
       - Kill duplicate ] in Zorro device ID database
       - Include <asm/io.h> instead of duplicating definitions from <asm/io.h>
      adaf9410
  5. 17 Jun, 2002 1 commit
    • Kai Germaschewski's avatar
      kbuild: Introduce $(obj), $(src) · 99fd37ec
      Kai Germaschewski authored
      For separate source and object directories, Rules.make needs
      to know where the files live.
      
      For all the normal variables, $(obj-[ymn]) etc, it can figure that
      out by itself, but for explicit rules to generate files it needs
      help. 
      
      So there $(obj)/target.o indicates that this file lives in the 
      object directory, as opposed to $(src)/target.c, which lives in
      the source dir.
      
      For now $(obj) = $(src) = ., but convert some Makefiles to it
      already.
      99fd37ec
  6. 06 Jun, 2002 1 commit
    • Kai Germaschewski's avatar
      kbuild: Add rules for compiling programs on the host · f99e6d1e
      Kai Germaschewski authored
      At a couple of places, we need to build programs which run on the
      compile host during building the kernel.
      
      Add a new variable "host-progs" to declare such programs. Rules.make will
      automatically provide rules to compile these programs with appropriate
      command lines etc.
      
      Compared to having explicit rules spread around for doing so, this has
      the following advantages:
      
      o shorter
      o automatically figures out dependencies and handles changing command
        lines
      o Nicer output in quiet mode ;-)
      
      Compiling host programs from multiple sources is also possible, analogous
      to multi-part objects. E.g. scripts/Makefile has
      
      	host-progs := tkparse
      	tkparse-objs := tkparse.o tkcond.o tkgen.o
      f99e6d1e
  7. 28 May, 2002 1 commit
    • Kai Germaschewski's avatar
      kbuild: Group together descending/linking in drivers/* · dc3b2a73
      Kai Germaschewski authored
      We currently decide whether we need to descend into the subdirs of
      drivers/ in drivers/Makefile, but link the resulting objects from
      the top-level Makefile.
      
      Making these two decisions at the same time (in drivers/Makefile) cleans
      up the top-level Makefile quite a bit.
      
      Link order does not change at all apart from sound/, which is now linked
      last.
      dc3b2a73
  8. 05 Feb, 2002 1 commit