]> git.proxmox.com Git - spiceterm.git/blobdiff - Makefile
build: fix -dbgsym generation
[spiceterm.git] / Makefile
index fb1a12ea740fc8ae1d4a6d247470e416f66ab7f1..db644b5b0169c8ee402cacbfbca71de16440048d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,43 @@
+include /usr/share/dpkg/pkg-info.mk
+include /usr/share/dpkg/architecture.mk
 
-PROGRAMS=spiceterm
+PACKAGE=spiceterm
 
-HEADERS=test_display_base.h basic_event_loop.h glyphs.h spiceterm.h
-SOURCES=test_display_base.c basic_event_loop.c
+GITVERSION:=$(shell cat .git/refs/heads/master)
+BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
 
-all: ${PROGRAMS}
+export VERSION=$(DEB_VERSION_UPSTREAM)
 
-spiceterm: ${SOURCES} ${HEADERS} spiceterm.c 
-       gcc -Werror -Wall -Wtype-limits  ${SOURCES} spiceterm.c -o $@ -lutil $(shell pkg-config --cflags gdk-3.0) $(shell pkg-config --cflags --libs gthread-2.0,spice-protocol,spice-server)
+DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
+DBG_DEB=${PACKAGE}-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
+DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc
 
-.PHONY: test
-test: spiceterm
-       ./spiceterm & remote-viewer spice://localhost:5912
+${BUILDDIR}: src/ debian/
+       rm -rf $(BUILDDIR)
+       rsync -a src/ debian $(BUILDDIR)
+       echo "git clone git://git.proxmox.com/git/spiceterm.git\\ngit checkout ${GITVERSION}" > $(BUILDDIR)/debian/SOURCE
 
-.PHONY: distclean
-distclean: clean
+.PHONY: dsc
+dsc: ${DSC}
+${DSC}: $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
+       lintian ${DSC}
+
+.PHONY: deb
+deb: ${DEB}
+${DEB}: $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
+       lintian ${DEB}
+
+.PHONY: dinstall
+dinstall: ${DEB}
+       dpkg -i ${DEB}
 
-.PHONY: clean
+.PHONY: upload
+upload: ${DEB}
+       tar cf - ${DEB} ${DBG_DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch ${ARCH}
+
+.PHONY: distclean clean
+distclean: clean
 clean:
-       rm -rf *~ ${PROGRAMS}
\ No newline at end of file
+       rm -rf *~ $(PACKAGE)-*/ *.deb *.changes genfont *.buildinfo *.dsc *.tar.gz