openmv/usr/Makefile
iabdalkader b0c4f8e844 Added USB OTG FS support
Added userspace libusb driver
Fixed some registers now QCIF/QQCIF resoultions are working
Updated CMSIS and STM32F4xx standard peripheral libraries
2013-11-30 04:23:22 +02:00

10 lines
211 B
Makefile

BINARY=openmv
CFLAGS= -Wall -O0 -ggdb `pkg-config --cflags sdl libusb-1.0` -I../src/
LIBS= -lusb-1.0 -lSDL -lSDL_ttf
SRCS= main.c
all:main.c
gcc $(CFLAGS) $(SRCS) -o $(BINARY) $(LIBS)
clean:
rm -f $(BINARY)