File: Makefile

package info (click to toggle)
jester 1.0-9
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 172 kB
  • sloc: ansic: 2,142; makefile: 23
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