5
0
mirror of git://git.proxmox.com/git/spiceterm.git synced 2025-01-31 01:48:06 +03:00
spiceterm/Makefile
2013-10-17 08:44:52 +02:00

24 lines
585 B
Makefile

PROGRAMS=spiceterm
HEADERS=translations.h event_loop.h glyphs.h spiceterm.h
SOURCES=screen.c event_loop.c input.c spiceterm.c
#export G_MESSAGES_DEBUG=all
#export SPICE_DEBUG=1
all: ${PROGRAMS}
spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
gcc -Werror -Wall -Wtype-limits ${SOURCES} -g -O2 -o $@ -lutil $(shell pkg-config --cflags gdk-3.0) $(shell pkg-config --cflags --libs gthread-2.0,spice-protocol,spice-server)
.PHONY: test
test: spiceterm
./spiceterm & remote-viewer spice://localhost:5912
.PHONY: distclean
distclean: clean
.PHONY: clean
clean:
rm -rf *~ ${PROGRAMS}