File: Makefile

package info (click to toggle)
jester 1.0-7.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 92 kB
  • ctags: 112
  • sloc: ansic: 1,127; makefile: 51
file content (16 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# makefile for jester

CC = gcc -Wall -O2 -g
#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