mirror of
git://git.proxmox.com/git/spiceterm.git
synced 2025-01-06 13:17:56 +03:00
21 lines
517 B
Makefile
21 lines
517 B
Makefile
|
|
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
|
|
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)
|
|
|
|
.PHONY: test
|
|
test: spiceterm
|
|
./spiceterm & remote-viewer spice://localhost:5912
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~ ${PROGRAMS}
|