]> git.proxmox.com Git - spiceterm.git/blame - Makefile
fix coding style
[spiceterm.git] / Makefile
CommitLineData
cc04455b 1
7409b684 2PROGRAMS=spiceterm
22e5ba02 3
64bc7a2f
DM
4HEADERS=translations.h event_loop.h glyphs.h spiceterm.h
5SOURCES=screen.c event_loop.c spiceterm.c
cc04455b
DM
6
7all: ${PROGRAMS}
8
22e5ba02 9spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
e3759a34 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)
1d7f2da4 11
7409b684
DM
12.PHONY: test
13test: spiceterm
22e5ba02 14 ./spiceterm & remote-viewer spice://localhost:5912
2cc3e3cc
DM
15
16.PHONY: distclean
17distclean: clean
18
19.PHONY: clean
20clean:
21 rm -rf *~ ${PROGRAMS}