xss

Screensaver utilities for the X Windowing System
git clone https://git.woozle.org/neale/xss.git

Alad Wenter  ·  2017-09-14

Makefile

 1HOSTTYPE = $(shell uname -m)
 2BINDIR ?= $(HOME)/bin/$(HOSTTYPE)
 3CFLAGS += -Wall
 4LDLIBS = -L/usr/X11R6/lib -lX11
 5
 6BINARIES = xss xsswin xcursorpos xkeygrab xbell magic xnolock
 7
 8all: $(BINARIES)
 9
10install: $(BINARIES)
11	cp $(BINARIES) $(BINDIR)
12
13clean:
14	rm -f $(BINARIES)
15
16xss xnolock: LDLIBS += -lXss
17
18.PHONY: all install clean