starting interpolate funcs

This commit is contained in:
2019-09-09 16:02:44 +02:00
parent f4001a1e13
commit 2f3a8870c4
4 changed files with 95 additions and 15 deletions

View File

@@ -4,7 +4,9 @@
COPT = -Wall -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
fimg-timers.o operators.o fimg-2gray.o \
interpolate.o
DEPS = Makefile ../floatimg.h
# modify it 'as you like'
@@ -13,7 +15,7 @@ AR=ar
all: $(OBJS) ../libfloatimg.a
t: t.c ../libfloatimg.a $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -lm -o $@
gcc $(COPT) $< ../libfloatimg.a -lpnglite -lm -o $@
# --------------------------------------------
@@ -29,6 +31,9 @@ fimg-2gray.o: fimg-2gray.c $(DEPS)
operators.o: operators.c $(DEPS)
gcc $(COPT) -c $<
interpolate.o: interpolate.c $(DEPS)
gcc $(COPT) -c $<
fimg-pnm.o: fimg-pnm.c $(DEPS)
gcc $(COPT) -c $<