⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Mac OS X、Microsoft Windows、GNU/Linux和其它作業系統
💻 IN
字号:
# Run configure to generate Makefile from Makefile.in on# any system supported by GNU autoconf.  For all other# systems, use this file as a template to create a# working Makefile.CC = @CC@CFLAGS = @CFLAGS@ -WallLIBS = @LIBS@ -lmAR = @AR@RANLIB = @RANLIB@srcdir=@srcdir@OBJS = \	src/resample.c.o \	src/resamplesubs.c.o \	src/filterkit.c.oTARGETS = @TARGETS@DIRS=testsall: $(TARGETS)libresample.a: $(OBJS) Makefile	$(AR) ruv libresample.a $(OBJS)	ranlib libresample.atests/testresample: libresample.a $(srcdir)/tests/testresample.c $(DIRS)	$(CC) -o tests/testresample \		$(CFLAGS) $(srcdir)/tests/testresample.c \		libresample.a $(LIBS)tests/compareresample: libresample.a $(srcdir)/tests/compareresample.c $(DIRS)	$(CC) -o tests/compareresample \		$(CFLAGS) $(srcdir)/tests/compareresample.c \		libresample.a -lsamplerate $(LIBS)tests/resample-sndfile: libresample.a $(srcdir)/tests/resample-sndfile.c $(DIRS)	$(CC) -o tests/resample-sndfile \		$(CFLAGS) $(srcdir)/tests/resample-sndfile.c \		libresample.a -lsndfile $(LIBS)$(DIRS):	mkdir $(DIRS)clean:	rm -f $(TARGETS) $(OBJS)distclean: clean	rm -f Makefile	rm -f config.status config.cache config.log src/config.h	rm -f *~ src/*~ tests/*~ include/*~$(OBJS): %.c.o: $(srcdir)/%.c Makefile $(srcdir)/include/libresample.h \	$(srcdir)/src/resample_defs.h $(srcdir)/src/filterkit.h $(srcdir)/src/config.h	$(CC) -c $(CFLAGS) $< -o $@

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -