Created
October 22, 2009 22:58
-
-
Save mhansen/216435 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- oldsrc/drivers/Makefile 2009-10-22 18:27:02.874446200 +1300 | |
| +++ src/drivers/Makefile 2009-10-22 18:07:42.490076100 +1300 | |
| @@ -9,42 +9,44 @@ | |
| @echo " make build # Compile all device drivers locally" >&2 | |
| @echo " make image # Compile drivers in boot image" >&2 | |
| @echo " make clean # Remove local compiler results" >&2 | |
| @echo " make install # Install drivers to /etc/drivers/" >&2 | |
| @echo " (requires root privileges)" >&2 | |
| @echo "" >&2 | |
| build: all | |
| all install depend clean: | |
| cd ./libdriver && $(MAKE) $@ | |
| cd ./libdriver_asyn && $(MAKE) $@ | |
| cd ./tty && $(MAKE) $@ | |
| cd ./amddev && $(MAKE) $@ | |
| cd ./at_wini && $(MAKE) $@ | |
| cd ./audio && $(MAKE) $@ | |
| cd ./floppy && $(MAKE) $@ | |
| cd ./printer && $(MAKE) $@ | |
| cd ./rtl8139 && $(MAKE) $@ | |
| cd ./orinoco && $(MAKE) $@ | |
| cd ./fxp && $(MAKE) $@ | |
| cd ./dpeth && $(MAKE) $@ | |
| cd ./log && $(MAKE) $@ | |
| cd ./bios_wini && $(MAKE) $@ | |
| cd ./random && $(MAKE) $@ | |
| cd ./readclock && $(MAKE) $@ | |
| cd ./dp8390 && $(MAKE) $@ | |
| cd ./sb16 && $(MAKE) $@ | |
| cd ./lance && $(MAKE) $@ | |
| cd ./pci && $(MAKE) $@ | |
| cd ./ti1225 && $(MAKE) $@ | |
| + cd ./proc && $(MAKE) $@ | |
| cd ./memory && $(MAKE) $@ # Must be last for ramdisk image | |
| image: | |
| cd ./libdriver && $(MAKE) build | |
| cd ./libdriver_asyn && $(MAKE) build | |
| cd ./tty && $(MAKE) build | |
| cd ./at_wini && $(MAKE) build | |
| cd ./floppy && $(MAKE) build | |
| cd ./bios_wini && $(MAKE) build | |
| cd ./log && $(MAKE) build | |
| cd ./pci && $(MAKE) build | |
| + cd ./proc && $(MAKE) build | |
| cd ./memory && $(MAKE) build # Must be last for ramdisk image |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment