?? makefile
字號:
LIBNAME = liba52.ainclude ../config.makSRCS = crc.c resample.c bit_allocate.c bitstream.c downmix.c imdct.c imdct_mlib.c parse.cOBJS = $(SRCS:.c=.o)CFLAGS = $(MLIB_INC) $(OPTFLAGS) .SUFFIXES: .c .o# .PHONY: all clean.c.o: $(CC) -c $(CFLAGS) -o $@ $<$(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME)test: $(LIBNAME) test.c $(CC) $(CFLAGS) test.c ../cpudetect.c -o test ../osdep/libosdep.a ./liba52.a -lmtest2: $(LIBNAME) test.c $(CC) $(CFLAGS) test.c -o test2 ../libac3/libac3.a ./liba52.a -lmall: $(LIBNAME)clean: rm -f *.o *.a *~distclean: rm -f test *.o *.a *~ .dependdep: dependdepend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend## include dependency files if they exist#ifneq ($(wildcard .depend),)include .dependendif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -