File: Makefile.debian

package info (click to toggle)
colrconv 0.99.2-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 72 kB
  • ctags: 45
  • sloc: ansic: 696; makefile: 37; sh: 4
file content (13 lines) | stat: -rw-r--r-- 210 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
all: colrconv

colrconv: colrconv.c
	gcc $(CFLAGS) -I/usr/include/ncurses colrconv.c \
	-DAUDIO -lncurses -o colrconv

install:
	strip colrconv
	install colrconv $(DESTDIR)/usr/bin
	
clean:
	rm -f colrconv *~