videograb : first step

This commit is contained in:
2019-05-25 16:16:24 +02:00
parent f0f8daa0fb
commit c054054ee5
5 changed files with 355 additions and 9 deletions

View File

@@ -3,13 +3,14 @@
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1
DEPS = ../floatimg.h ../libfloatimg.a Makefile
funcs.o: funcs.c funcs.h Makefile
gcc ${COPT} -c $<
t: t.c Makefile ${DEPS} funcs.o
gcc ${COPT} $< funcs.o ../libfloatimg.a -o $@
t: t.c Makefile ${DEPS}
gcc ${COPT} $< ../libfloatimg.a -o $@
# --------
# extern things
# ---------------
# external things
capture: capture.c Makefile
gcc -Wall $< -o $@