backend

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.deepztream.com/backend
Log | Files | Refs

Makefile (148B)


      1 INPUT_FILES = backend.c \
      2 							ir_backend.c \
      3 							dlib.h
      4 CFLAGS=-ggdb -Og -Wall -Wextra
      5 backend: $(INPUT_FILES)
      6 	gcc $(CFLAGS) -o $@ backend.c