File: makefile

package info (click to toggle)
ree 1.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: ansic: 326; sh: 39; makefile: 11
file content (10 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
all:
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) ree.c -o ree
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) fontdump.c -o fontdump

clean:
	rm -f fontdump ree

install:
	cp fontdump $(DESTDIR)/usr/bin
	cp ree $(DESTDIR)/usr/sbin