]> git.proxmox.com Git - spiceterm.git/blobdiff - Makefile
fix coding style
[spiceterm.git] / Makefile
index 77b93c95d42d0dcb4b0d3f06aee4ea45a7b7ddc4..d31a756e302848a881f4ed94f0fe541e79a55f8b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,21 @@
 
-PROGRAMS=test_display_no_ssl spiceterm
+PROGRAMS=spiceterm
 
-HEADERS=test_display_base.h basic_event_loop.h ring.h glyphs.h spiceterm.h
-SOURCES=test_display_base.c basic_event_loop.c
+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} test_display_no_ssl.c 
-       gcc ${SOURCES} test_display_no_ssl.c -o $@ $(shell pkg-config --cflags --libs spice-protocol,spice-server)
-
 spiceterm: ${SOURCES} ${HEADERS} spiceterm.c 
-       gcc ${SOURCES} spiceterm.c -o $@ -lutil $(shell pkg-config --cflags --libs spice-protocol,spice-server)
-
-.PHONY: test1
-test1: test_display_no_ssl
-       ./test_display_no_ssl & remote-viewer spice://localhost:5912
+       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: test2
-test2: spiceterm
+.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