# Makefile for uxd, by B. Watson. WTFPL. ### Override these variables as needed. Don't override CFLAGS; use # MYCFLAGS instead. MYCFLAGS=-O2 -fPIC -Wall # These only affect the 'install' target (they don't get compiled # into the binary). PREFIX=/usr MANDIR=$(PREFIX)/man MAN1DIR=$(MANDIR)/man1 BINDIR=$(PREFIX)/bin DESTDIR= INSTALL_DATA=install -m0644 INSTALL_PROGRAM=install -s -m0755 GZIP=gzip -9 GZIP_MAN=yes # ### No user-serviceable parts below. VERSION=0.1.0 DEFINES=-DVERSION='"$(VERSION)"' CFLAGS=$(MYCFLAGS) $(DEFINES) .PHONY: all test man clean install all: uxd man install: all mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MAN1DIR) $(INSTALL_DATA) uxd.1 $(DESTDIR)$(MAN1DIR) ifeq ($(GZIP_MAN),yes) $(GZIP) $(DESTDIR)$(MAN1DIR)/uxd.1 endif $(INSTALL_PROGRAM) uxd $(DESTDIR)$(BINDIR) test: uxd ./uxd man: uxd.1 uxd.1: uxd.rst rst2man uxd.rst > uxd.1 clean: rm -f uxd