]> git.proxmox.com Git - spiceterm.git/blame - Makefile
cleanup clipboard owner handling
[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 6
f3112e00
DM
7#export G_MESSAGES_DEBUG=all
8#export SPICE_DEBUG=1
9
cc04455b
DM
10all: ${PROGRAMS}
11
22e5ba02 12spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
e3759a34 13 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 14
7409b684
DM
15.PHONY: test
16test: spiceterm
22e5ba02 17 ./spiceterm & remote-viewer spice://localhost:5912
2cc3e3cc
DM
18
19.PHONY: distclean
20distclean: clean
21
22.PHONY: clean
23clean:
24 rm -rf *~ ${PROGRAMS}