summaryrefslogtreecommitdiffstats
path: root/drivers/sound/Makefile
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1994-11-28 11:59:19 +0000
committer <ralf@linux-mips.org>1994-11-28 11:59:19 +0000
commit1513ff9b7899ab588401c89db0e99903dbf5f886 (patch)
treef69cc81a940a502ea23d664c3ffb2d215a479667 /drivers/sound/Makefile
Import of Linus's Linux 1.1.68
Diffstat (limited to 'drivers/sound/Makefile')
-rw-r--r--drivers/sound/Makefile79
1 files changed, 79 insertions, 0 deletions
diff --git a/drivers/sound/Makefile b/drivers/sound/Makefile
new file mode 100644
index 000000000..128075ffe
--- /dev/null
+++ b/drivers/sound/Makefile
@@ -0,0 +1,79 @@
+# Makefile for the Linux sound card driver
+#
+# Note 2! The CFLAGS definitions are now inherited from the
+# parent makes. (hopefully)
+#
+#
+
+VERSION = 2.90-2
+TARGET_OS = linux
+
+.c.s:
+ $(CC) $(CFLAGS) -S $<
+.s.o:
+ $(AS) -c -o $*.o $<
+.c.o:
+ $(CC) $(CFLAGS) -c $<
+
+OBJS = soundcard.o audio.o dmabuf.o sb_dsp.o dev_table.o \
+ opl3.o sequencer.o midibuf.o sb_card.o pas2_card.o adlib_card.o \
+ pas2_pcm.o pas2_mixer.o pas2_midi.o gus_card.o gus_wave.o mpu401.o \
+ gus_midi.o gus_vol.o patmgr.o sb_mixer.o sb16_dsp.o sb_midi.o \
+ sb16_midi.o sound_switch.o midi_synth.o uart6850.o sound_timer.o \
+ sys_timer.o ics2101.o ad1848.o pss.o
+
+all: local.h sound.a
+
+/usr/include/sys/soundcard.h:
+ @echo "WARNING! Your /usr/include/sys/soundcard.h not found."
+ @echo "Please make a new /usr/include/sys/soundcard.h containing"
+ @echo "just a line #include <linux/soundcard.h>"
+
+sound.a: $(OBJS)
+ -rm -f sound.a
+ $(AR) rcs sound.a $(OBJS)
+ sync
+
+clean:
+ rm -f core core.* *.o *.a tmp_make *~ x z *%
+ rm -f configure sound_stub.c
+ for i in *.c;do rm -f `basename $$i .c`.s;done
+
+indent:
+ for n in *.c;do echo indent $$n;indent $$n;done
+
+local.h:
+ $(MAKE) clean
+ $(MAKE) config
+ $(MAKE) dep
+
+config: configure /usr/include/sys/soundcard.h
+ @echo Compiling Sound Driver v $(VERSION) for Linux
+ @./configure > local.h
+ @echo \#define SOUND_VERSION_STRING \"$(VERSION)\" >> local.h
+ @echo \#define SOUND_CONFIG_DATE \"`date`\" >> local.h
+ @echo \#define SOUND_CONFIG_BY \"`whoami`\" >> local.h
+ @echo \#define SOUND_CONFIG_HOST \"`hostname`\" >> local.h
+ @if [ -x /bin/dnsdomainname ]; then \
+ echo \#define SOUND_CONFIG_DOMAIN \"`dnsdomainname`\"; \
+ else \
+ echo \#define SOUND_CONFIG_DOMAIN \"`domainname`\"; \
+ fi >> local.h
+
+clrconf:
+ rm -f local.h .depend
+
+configure: configure.c /usr/include/sys/soundcard.h
+ $(HOSTCC) -o configure configure.c
+ @cat .blurb
+
+dep:
+ $(MAKE) /usr/include/sys/soundcard.h
+ $(CPP) -M *.c > .depend
+
+#
+# include a dependency file if one exists
+#
+ifeq (.depend,$(wildcard .depend))
+include .depend
+endif