diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-07-03 23:12:16 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-07-03 23:12:16 +0200 |
| commit | 87719884e259bcf11794cba30c8b8df5ef10a1cd (patch) | |
| tree | 43afee9eb7815216674459c0e791edcb34c42218 /Makefile | |
| parent | First commit (diff) | |
| download | bff-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-- | Makefile | 26 |
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 |
