]> git.proxmox.com Git - spiceterm.git/blobdiff - Makefile
remove unused fields
[spiceterm.git] / Makefile
index aab486088ce5cca9c0cda7b0df1a42dc8af70af1..d31a756e302848a881f4ed94f0fe541e79a55f8b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,21 @@
 
-PROGRAMS=test_display_no_ssl
-HEADERS=test_display_base.h basic_event_loop.h ring.h
-SOURCES=test_display_base.c test_display_no_ssl.c basic_event_loop.c
+PROGRAMS=spiceterm
+
+HEADERS=translations.h event_loop.h glyphs.h spiceterm.h
+SOURCES=screen.c event_loop.c spiceterm.c
 
 all: ${PROGRAMS}
 
-test_display_no_ssl: ${SOURCES} ${HEADERS}
-       gcc ${SOURCES} -o $@ $(shell pkg-config --cflags --libs spice-protocol,spice-server)
+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}
\ No newline at end of file