blob: f2f789a28097d59e434807c6d290e8082440669f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
OBJS=
ifdef CONFIG_AD1848
OBJS := $(OBJS) ad1848.o
endif
ifdef CONFIG_YM3812
OBJS := $(OBJS) adlib_card.o
endif
ifdef CONFIG_AUDIO
OBJS := $(OBJS) audio.o
endif
ifdef CONFIG_CS4232
OBJS := $(OBJS) cs4232.o
endif
ifdef CONFIG_AUDIO
OBJS := $(OBJS) dmabuf.o
endif
ifdef CONFIG_GUSHW
OBJS := $(OBJS) gus_card.o gus_midi.o gus_vol.o gus_wave.o ics2101.o
endif
ifdef CONFIG_MAD16
OBJS := $(OBJS) mad16.o
endif
ifdef CONFIG_MAUI
OBJS := $(OBJS) maui.o
endif
ifdef CONFIG_MIDI
OBJS := $(OBJS) midi_synth.o midibuf.o
endif
ifdef CONFIG_MPU401
OBJS := $(OBJS) mpu401.o
else
ifdef CONFIG_MPU_EMU
OBJS := $(OBJS) mpu401.o
endif
endif
ifdef CONFIG_YM3812
OBJS := $(OBJS) opl3.o
endif
ifdef CONFIG_PAS
OBJS := $(OBJS) pas2_card.o pas2_midi.o pas2_mixer.o pas2_pcm.o
endif
ifdef CONFIG_PSS
OBJS := $(OBJS) pss.o
endif
ifdef CONFIG_SBDSP
OBJS := $(OBJS) sb_card.o sb_common.o sb_audio.o sb_mixer.o sb_midi.o
endif
ifdef CONFIG_SEQUENCER
OBJS := $(OBJS) sequencer.o
endif
ifdef CONFIG_SEQUENCER
OBJS := $(OBJS) sound_timer.o
endif
ifdef CONFIG_SSCAPEHW
OBJS := $(OBJS) sscape.o
endif
ifdef CONFIG_TRIX
OBJS := $(OBJS) trix.o
endif
ifdef CONFIG_SEQUENCER
OBJS := $(OBJS) sys_timer.o
endif
ifdef CONFIG_UART6850
OBJS := $(OBJS) uart6850.o
endif
ifdef CONFIG_UART401
OBJS := $(OBJS) uart401.o
endif
|