5
0
mirror of git://git.proxmox.com/git/spiceterm.git synced 2025-01-07 17:17:59 +03:00
spiceterm/Makefile

21 lines
517 B
Makefile
Raw Normal View History

2013-09-10 14:14:45 +04:00
PROGRAMS=spiceterm
HEADERS=translations.h event_loop.h glyphs.h spiceterm.h
SOURCES=screen.c event_loop.c spiceterm.c
all: ${PROGRAMS}
spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
2013-09-11 09:44:47 +04:00
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)
2013-09-10 14:14:45 +04:00
.PHONY: test
test: spiceterm
./spiceterm & remote-viewer spice://localhost:5912
2013-08-06 13:01:17 +04:00
.PHONY: distclean
distclean: clean
.PHONY: clean
clean:
rm -rf *~ ${PROGRAMS}