From 87719884e259bcf11794cba30c8b8df5ef10a1cd Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 3 Jul 2017 23:12:16 +0200 Subject: Add bff-premultiply and bff-unpremultiply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3-70-g09d2