]> git.proxmox.com Git - spiceterm.git/blob - Makefile
white space cleanups
[spiceterm.git] / Makefile
1
2 PROGRAMS=spiceterm
3
4 HEADERS=translations.h event_loop.h glyphs.h spiceterm.h
5 SOURCES=screen.c event_loop.c spiceterm.c
6
7 all: ${PROGRAMS}
8
9 spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
10 gcc -Werror -Wall -Wtype-limits ${SOURCES} -o $@ -lutil $(shell pkg-config --cflags gdk-3.0) $(shell pkg-config --cflags --libs gthread-2.0,spice-protocol,spice-server)
11
12 .PHONY: test
13 test: spiceterm
14 ./spiceterm & remote-viewer spice://localhost:5912
15
16 .PHONY: distclean
17 distclean: clean
18
19 .PHONY: clean
20 clean:
21 rm -rf *~ ${PROGRAMS}