Changeset 99de22b in mainline for uspace/Makefile
- Timestamp:
- 2010-01-15T18:30:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eeb643d
- Parents:
- 387416b (diff), 563d6077 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r387416b r99de22b 33 33 34 34 DIRS = \ 35 app/bdsh \ 36 app/edit \ 37 app/getterm \ 38 app/init \ 39 app/klog \ 40 app/mkfat \ 41 app/redir \ 42 app/tester \ 43 app/tetris \ 44 app/trace \ 45 srv/clip \ 46 srv/devmap \ 47 srv/loader \ 48 srv/ns \ 49 srv/vfs \ 35 50 srv/bd/ata_bd \ 36 51 srv/bd/file_bd \ 37 52 srv/bd/gxe_bd \ 38 53 srv/bd/rd \ 39 srv/ns \ 40 srv/loader \ 41 srv/fb \ 42 srv/kbd \ 43 srv/console \ 54 srv/bd/part/mbr_part \ 44 55 srv/fs/fat \ 45 56 srv/fs/tmpfs \ 46 57 srv/fs/devfs \ 47 srv/vfs \ 48 srv/devmap \ 49 srv/part/mbr_part \ 50 srv/clip \ 51 app/edit \ 52 app/tetris \ 53 app/tester \ 54 app/trace \ 55 app/klog \ 56 app/init \ 57 app/getvc \ 58 app/redir \ 59 app/bdsh 58 srv/hid/console \ 59 srv/hid/c_mouse \ 60 srv/hid/fb \ 61 srv/hid/kbd \ 62 srv/hw/char/i8042 60 63 61 64 ifeq ($(UARCH),amd64) 62 DIRS += srv/ pci65 DIRS += srv/hw/bus/pci 63 66 endif 64 67 65 68 ifeq ($(UARCH),ia32) 66 DIRS += srv/ pci69 DIRS += srv/hw/bus/pci 67 70 endif 68 71 69 72 ifeq ($(UARCH),sparc64) 70 73 DIRS += \ 71 srv/ cir/fhc \72 srv/ cir/obio74 srv/hw/cir/fhc \ 75 srv/hw/cir/obio 73 76 endif 74 77 … … 96 99 97 100 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 98 $(MAKE) -C $(basename $@) all 101 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 99 102 100 103 $(LIBS_BUILD): $(LIBC_BUILD) 101 $(MAKE) -C $(basename $@) all 104 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 102 105 103 106 $(LIBC_BUILD): 104 $(MAKE) -C $(basename $@) all 107 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
Note:
See TracChangeset
for help on using the changeset viewer.