File: Makefile

package info (click to toggle)
braillefont 1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: ansic: 132; makefile: 23; perl: 20
file content (14 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: braillefont
clean:
	rm -f braillefont braillefont.o 6x8font.h

CFLAGS := -std=c99 -Wall $(CFLAGS)

braillefont:	braillefont.o
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $^ -o $@

braillefont.o:	braillefont.c 6x8font.h
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -c $<

6x8font.h:	png2font 6x8.png
	./png2font >6x8font.h