# Makefile for RIGHT ON COMMAND-LINE # # $Id: Makefile,v 1.6 2003/03/04 10:27:11 mdw Exp $ #----- Configuration stuff -------------------------------------------------- # --- Compiling and linking --- CC = gcc INCLUDES = CFLAGS = -O2 -g -pedantic -Wall $(INCLUDES) LD = gcc LDFLAGS = -shared # --- Installation --- INST = prefix = /usr/local tcllibdir = $(prefix)/lib pkglibdir = $(tcllibdir)/elite bindir = $(prefix)/bin INSTALL = install RM = rm #----- Main machinery ------------------------------------------------------- # # Shouldn't need to fiddle with thiis stuff. PACKAGE = rocl VERSION = 1.0.3 TCLSCRIPTS = \ elite-editor elite-pairs elite-path elite-find elite-map \ elite-prices elite-describe elite-reach elite-cmdr all: elite.so pkgIndex.tcl elite.so: elite.o $(LD) $(LDFLAGS) elite.o -o elite.so .SUFFIXES: .c .o .c.o:; $(CC) -c $(CFLAGS) -o $@ $< pkgIndex.tcl: elite.so elite.tcl echo "pkg_mkIndex -verbose -direct . elite.so elite.tcl" | tclsh install: all $(INSTALL) -d $(INST)$(bindir) $(INST)$(pkglibdir) $(INSTALL) -m 644 elite.so elite.tcl pkgIndex.tcl $(INST)$(pkglibdir) $(INSTALL) -m 755 $(TCLSCRIPTS) $(INST)$(bindir) clean: $(RM) -f elite.o elite.so pkgIndex.tcl DISTDIR = $(PACKAGE)-$(VERSION) DISTFILES = README Makefile elite.c elite.tcl elite.def $(TCLSCRIPTS) distdir: $(DISTFILES) $(RM) -rf $(DISTDIR) mkdir $(DISTDIR) for i in $(DISTFILES); do ln -s ../$$i $(DISTDIR); done disttar: distdir tar chofz $(DISTDIR).tar.gz $(DISTDIR) distzip: distdir cd $(DISTDIR) && zip -rq ../$(DISTDIR).zip . dist: disttar distzip $(RM) -rf $(DISTDIR) distcheck: dist @echo "*** Packing..." $(MAKE) dist @echo "*** Unpacking..." tar xfz $(DISTDIR).tar.gz @echo "*** Test building..." set -e; \ cd $(DISTDIR); \ $(MAKE) clean; \ $(MAKE); \ $(MAKE) install INST=inst; \ $(MAKE) dist @echo "*** Tidying up..." rm -rf $(DISTDIR) @echo "*** All OK" .PHONY: all install clean dist disttar distzip distdir distcheck #----- That's all, folks ----------------------------------------------------