File: Makefile

package info (click to toggle)
jester 1.0-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 96 kB
  • ctags: 119
  • sloc: ansic: 1,126; makefile: 67; sh: 2
file content (16 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# makefile for jester

CC = gcc -Wall -O2
#CC = gcc -Wall -g
LIBS = -L/usr/X11R6/lib -lX11
INSTALLDIR = /usr/local

jester: jester.c jester.h
	$(CC) -o jester jester.c $(LIBDIR) $(LIBS)

install: jester jester.6
	install jester $(INSTALLDIR)/bin/jester
	install -m 644 jester.6 $(INSTALLDIR)/man/man6/jester.6

clean:
	rm -f jester