mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Added userspace libusb driver Fixed some registers now QCIF/QQCIF resoultions are working Updated CMSIS and STM32F4xx standard peripheral libraries
10 lines
211 B
Makefile
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)
|