📄 makefile
字号:
# Makefile for the Linux sound card driver## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).## Note 2! The CFLAGS definitions are now inherited from the# parent makes. (hopefully)## Stolen from the kernel Makefiles, Craig Metz - cmetz@thor.tjhsst.edu#.c.s: $(CC) $(CFLAGS) -S $<.s.o: $(AS) -c -o $*.o $<.c.o: $(CC) $(CFLAGS) $(SOUND_SUPPORT) -c $<OBJS = sound_stub.oall: sound.asound.a: $(OBJS) $(AR) rcs sound.a $(OBJS) syncclean: rm -f core *.o *.a *.BAK *.BA *.B rm -f soundload sounddrv for i in *.c;do rm -f `basename $$i .c`.s;doneindent: for n in *.c;do echo indent $$n;indent $$n;donedep: $(CPP) -M $(SOUND_SUPPORT) *.c > .depend## include a dependency file if one exists#ifeq (.depend,$(wildcard .depend))include .dependendif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -