?? makefile.arm
字號(hào):
############################### CamDetect Makefile##############################CC=arm-linux-gccSERVFLAGS= -O2 -DLINUX $(WARNINGS)SERVLIBS= -lpthread -Lxyssl -lxyssl#WARNINGS = -Wall \# -Wundef -Wpointer-arith -Wbad-function-cast \# -Wcast-align -Wwrite-strings -Wstrict-prototypes \# -Wmissing-prototypes -Wmissing-declarations \# -Wnested-externs -Winline -Wcast-qual -W \# -Wno-unused# -WunusedOBJSERVER= encoder.o huffman.o marker.o \ quant.o spcav4l.o utils.o \ camdetect.o all: camdetectclean: @echo "Cleaning up directory." rm -f *.a *.o camdetect core *~ log errlogcamdetect: $(OBJSERVER) gcc $(SERVFLAGS) -o camdetect $(OBJSERVER) $(SERVLIBS) spcav4l.o: spcav4l.c spcav4l.h $(CC) $(SERVFLAGS) -c -o $@ $< utils.o: utils.c utils.h $(CC) $(SERVFLAGS) -c -o $@ $< encoder.o: encoder.c encoder.h $(CC) $(SERVFLAGS) -c -o $@ $< huffman.o: huffman.c huffman.h $(CC) $(SERVFLAGS) -c -o $@ $< marker.o: marker.c marker.h $(CC) $(SERVFLAGS) -c -o $@ $< quant.o: quant.c quant.h $(CC) $(SERVFLAGS) -c -o $@ $<camdetect.o: CamDetect.c $(CC) -Ixyssl $(SERVFLAGS) -c -o $@ $<
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -