File: Makefile

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 (7 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
BIN_DIR = /usr/local/bin

colrconv: colrconv.c
	gcc -Wall -I/usr/include/ncurses colrconv.c -lncurses -o colrconv

install: colrconv
	install -m 0755 -o root -g bin colrconv	$(BIN_DIR)