📄 makefile.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 + -