metadata boilerplane, first milestone reached

This commit is contained in:
tth
2022-03-19 01:21:58 +01:00
parent 7ea77cc882
commit 039d4cb77b
20 changed files with 105 additions and 4 deletions

View File

@@ -6,7 +6,8 @@ COPT = -Wall -Wextra -fpic -g -no-pie -DDEBUG_LEVEL=0
OBJS = fimg-core.o fimg-pnm.o fimg-file.o fimg-math.o \
fimg-timers.o operators.o fimg-2gray.o \
interpolate.o fimg-compare.o contrast.o
interpolate.o fimg-compare.o contrast.o \
metadata.o
DEPS = Makefile ../floatimg.h
@@ -35,6 +36,9 @@ fimg-2gray.o: fimg-2gray.c $(DEPS)
operators.o: operators.c $(DEPS)
gcc $(COPT) -c $<
metadata.o: metadata.c $(DEPS)
gcc $(COPT) -c $<
contrast.o: contrast.c $(DEPS)
gcc $(COPT) -c $<