2
0
mirror of git://git.proxmox.com/git/spiceterm.git synced 2025-08-22 02:07:24 +00:00
spiceterm/Makefile

21 lines
517 B
Makefile
Raw Normal View History

2013-09-10 12:14:45 +02: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 07:44:47 +02: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 12:14:45 +02:00
.PHONY: test
test: spiceterm
./spiceterm & remote-viewer spice://localhost:5912
2013-08-06 11:01:17 +02:00
.PHONY: distclean
distclean: clean
.PHONY: clean
clean:
rm -rf *~ ${PROGRAMS}