starting interpolate funcs
This commit is contained in:
@@ -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 $<
|
||||
|
||||
|
||||
Reference in New Issue
Block a user