last commit from outerspace

This commit is contained in:
tTh
2022-07-11 06:12:25 +02:00
parent 3eed90c3e7
commit 1b598227c3
6 changed files with 45 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ 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 \
metadata.o
metadata.o alphachan.o
DEPS = Makefile ../floatimg.h
@@ -24,6 +24,9 @@ t: t.c ../libfloatimg.a $(DEPS)
../libfloatimg.a: $(OBJS)
$(AR) r $@ $?
alphachan.o: alphachan.c $(DEPS)
gcc $(COPT) -c $<
fimg-core.o: fimg-core.c $(DEPS)
gcc $(COPT) -c $<