Makefile - ff2txt - farbfeld image to plain text visualization
(HTM) git clone git://bitreich.org/ff2txt git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ff2txt
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
---
Makefile (400B)
---
1 CFLAGS = -std=c89 -pedantic -Wall -Wextra -Werror
2
3 all: ff2braille ff2col
4
5 .c.o:
6 ${CC} ${CFLAGS} -c $< -o $@
7
8 ff2braille: ff2braille.o util.o util.h
9 ${CC} -o $@ ff2braille.o util.o $(LDFLAGS)
10
11 ff2col: ff2col.o util.o util.h
12 ${CC} -o $@ ff2col.o util.o $(LDFLAGS)
13
14 install:
15 mkdir -p ${PREFIX}/bin
16 cp ff2col ff2braille ${PREFIX}/bin
17
18 clean:
19 rm -f *.o ff2braille ff2col
20
21 .PHONY: all install clean