Subversion Repositories HelenOS

Rev

Rev 4377 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4377 Rev 4692
Line 35... Line 35...
35
	lib/libc \
35
	lib/libc \
36
	lib/libfs \
36
	lib/libfs \
37
	lib/libblock \
37
	lib/libblock \
38
	lib/softint \
38
	lib/softint \
39
	lib/softfloat \
39
	lib/softfloat \
-
 
40
	srv/bd/ata_bd \
-
 
41
	srv/bd/file_bd \
-
 
42
	srv/bd/gxe_bd \
-
 
43
	srv/bd/rd \
40
	srv/ns \
44
	srv/ns \
41
	srv/loader \
45
	srv/loader \
42
	srv/fb \
46
	srv/fb \
43
	srv/kbd \
47
	srv/kbd \
44
	srv/console \
48
	srv/console \
45
	srv/rd \
-
 
46
	srv/fs/fat \
49
	srv/fs/fat \
47
	srv/fs/tmpfs \
50
	srv/fs/tmpfs \
-
 
51
	srv/fs/devfs \
48
	srv/vfs \
52
	srv/vfs \
49
	srv/devmap \
53
	srv/devmap \
50
	app/debug \
54
	app/debug \
51
	app/trace \
55
	app/trace \
52
	app/tetris \
56
	app/tetris \
53
	app/tester \
57
	app/tester \
54
	app/klog \
58
	app/klog \
55
	app/init \
59
	app/init \
-
 
60
	app/getvc \
56
	app/bdsh
61
	app/bdsh
57
 
62
 
58
ifeq ($(UARCH),amd64)
63
ifeq ($(UARCH),amd64)
59
	DIRS += srv/pci
64
	DIRS += srv/pci
60
endif
65
endif
Line 63... Line 68...
63
	DIRS += srv/pci
68
	DIRS += srv/pci
64
endif
69
endif
65
 
70
 
66
ifeq ($(UARCH),sparc64)
71
ifeq ($(UARCH),sparc64)
67
	DIRS += \
72
	DIRS += \
68
		srv/fhc \
73
		srv/cir/fhc \
69
		srv/obio
74
		srv/cir/obio
70
endif
75
endif
71
 
76
 
72
BUILDS := $(addsuffix .build,$(DIRS))
77
BUILDS := $(addsuffix .build,$(DIRS))
73
CLEANS := $(addsuffix .clean,$(DIRS))
78
CLEANS := $(addsuffix .clean,$(DIRS))
74
 
79