25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
510B

  1. CV=/home/wuselfuzz/opencv-dist/usr
  2. BR=/home/wuselfuzz/buildroot-2009.11
  3. CVLIB=$(CV)/lib
  4. CVINC=$(CV)/include/opencv
  5. CFLAGS=-I$(CVINC) -msoft-float
  6. LIBS=-L/home/wuselfuzz/opencv-dist/usr/lib -lhighgui -lcvaux -lcv -lcxcore -lgomp
  7. #LIBS=$(CVLIB)/libcv.a $(CVLIB)/libhighgui.a $(CVLIB)/libcvaux.a $(CVLIB)/libml.a $(CVLIB)/libcxcore.a -lgomp -lz
  8. CXX=arm-linux-g++
  9. LD=arm-linux-g++
  10. main: main.o
  11. $(LD) -o main main.o $(LIBS)
  12. main.o: main.cpp
  13. $(CXX) $(CFLAGS) -c -o main.o main.cpp
  14. clean:
  15. rm main.o main *~