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