Changeset 3b3e776 in mainline for uspace/Makefile
- Timestamp:
- 2010-02-05T10:57:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0358da0
- Parents:
- 3f085132 (diff), b4cbef1 (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
r3f085132 r3b3e776 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/shutters \ 43 app/taskdump \ 44 app/tester \ 45 app/test_serial \ 46 app/tetris \ 47 app/trace \ 48 srv/clip \ 49 srv/devmap \ 50 srv/loader \ 51 srv/ns \ 52 srv/taskmon \ 53 srv/vfs \ 35 54 srv/bd/ata_bd \ 36 55 srv/bd/file_bd \ 37 56 srv/bd/gxe_bd \ 38 57 srv/bd/rd \ 39 srv/ns \ 40 srv/loader \ 41 srv/fb \ 42 srv/kbd \ 43 srv/console \ 58 srv/bd/part/guid_part \ 59 srv/bd/part/mbr_part \ 44 60 srv/fs/fat \ 45 61 srv/fs/tmpfs \ 46 62 srv/fs/devfs \ 47 srv/vfs \ 48 srv/devmap \ 49 srv/part/mbr_part \ 50 app/edit \ 51 app/tetris \ 52 app/shutters \ 53 app/test_serial \ 54 app/tester \ 55 app/trace \ 56 app/klog \ 57 app/init \ 58 app/getvc \ 59 app/redir \ 60 app/bdsh 63 srv/hid/adb_mouse \ 64 srv/hid/console \ 65 srv/hid/char_mouse \ 66 srv/hid/fb \ 67 srv/hid/kbd \ 68 srv/hw/char/i8042 61 69 62 70 ifeq ($(UARCH),amd64) 63 DIRS += \64 srv/dd 71 DIRS += srv/dd 72 # DIRS += srv/hw/bus/pci 65 73 endif 66 74 67 75 ifeq ($(UARCH),ia32) 68 DIRS += \ 69 srv/dd 76 DIRS += srv/dd 77 # DIRS += srv/hw/bus/pci 78 endif 79 80 ifeq ($(UARCH),ppc32) 81 DIRS += srv/hw/bus/cuda_adb 70 82 endif 71 83 … … 73 85 DIRS += \ 74 86 srv/dd \ 75 srv/ cir/fhc \76 srv/ cir/obio87 srv/hw/cir/fhc \ 88 srv/hw/cir/obio 77 89 endif 78 90 … … 82 94 lib/libblock \ 83 95 lib/softint \ 84 lib/softfloat 96 lib/softfloat \ 97 98 ifeq ($(UARCH),amd64) 99 LIBS += lib/libpci 100 endif 101 102 ifeq ($(UARCH),ia32) 103 LIBS += lib/libpci 104 endif 105 85 106 86 107 LIBC_BUILD = $(addsuffix .build,$(LIBC)) … … 100 121 101 122 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 102 $(MAKE) -C $(basename $@) all 123 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 103 124 104 125 $(LIBS_BUILD): $(LIBC_BUILD) 105 $(MAKE) -C $(basename $@) all 126 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 106 127 107 128 $(LIBC_BUILD): 108 $(MAKE) -C $(basename $@) all 129 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
Note:
See TracChangeset
for help on using the changeset viewer.