File: Makefile

package info (click to toggle)
chinput 3.0.2-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,124 kB
  • ctags: 2,806
  • sloc: ansic: 52,549; makefile: 165; perl: 23
file content (17 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

all: rootwin overspot onspot offspot

rootwin: rootwin.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o rootwin rootwin.c

overspot: overspot.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o overspot overspot.c

onspot: onspot.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o onspot onspot.c

offspot: offspot.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o offspot offspot.c

clean:
	rm -f rootwin overspot onspot offspot *.o *.bak