summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-07-03 23:12:16 +0200
committerMattias Andrée <maandree@kth.se>2017-07-03 23:12:16 +0200
commit87719884e259bcf11794cba30c8b8df5ef10a1cd (patch)
tree43afee9eb7815216674459c0e791edcb34c42218 /Makefile
parentFirst commit (diff)
downloadbff-87719884e259bcf11794cba30c8b8df5ef10a1cd.tar.gz
bff-87719884e259bcf11794cba30c8b8df5ef10a1cd.tar.bz2
bff-87719884e259bcf11794cba30c8b8df5ef10a1cd.tar.xz
Add bff-premultiply and bff-unpremultiply
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c7aa8fd
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,26 @@
+.POSIX:
+
+CONFIGFILE = config.mk
+include $(CONFIGFILE)
+
+
+BIN =\
+ bff-premultiply\
+ bff-unpremultiply
+
+
+HDR =\
+ arg.h\
+ common.h
+
+all: $(BIN)
+
+$(BIN:=.o): $(HDR)
+common.o: $(HDR)
+$(BIN): common.o
+
+clean:
+ -rm -- *.o $(BIN)
+
+.PHONY: all clean
+.PRECIOUS: common.o