File: Makefile

package info (click to toggle)
tinywm 1.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 96 kB
  • ctags: 19
  • sloc: ansic: 92; makefile: 59; sh: 30; python: 29
file content (14 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BINDIR?=/usr/bin
PREFIX?=/usr/X11R6
CFLAGS?=-Os -pedantic -Wall

all:
	$(CC) $(CFLAGS) -I$(PREFIX)/include -L$(PREFIX)/lib -lX11 -o tinywm tinywm.c

install:
	install -d ${DESTDIR}${BINDIR}
	install -m 755 tinywm ${DESTDIR}${BINDIR}
		
clean:
	rm -f tinywm