DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦448f0508b⟧ TextFile

    Length: 718 (0x2ce)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/TeXcontrib/gnuplot/translate/Makefile« 

TextFile

#------------------------------------------------------------------
# Makefile for gnut2p
#   A translation program from Gnutex to GNUPLOT
#   David Kotz
#   Duke University
#   dfk@cs.duke.edu
#
# derived from gnutex
#

# Define this for production version
CFLAGS=-O -s
# For the debugging version
#CFLAGS=-g

# Your favorite tags program
TAGS=etags
#TAGS=ctags

OBJS = plot.o scanner.o parse.o command.o eval.o \
	standard.o internal.o util.o misc.o 

SRC = plot.h command.c eval.c internal.c misc.c \
	parse.c plot.c scanner.c standard.c util.c

gnut2p: $(OBJS)
	cc $(CFLAGS) $(OBJS) -o gnut2p -lm

$(OBJS): plot.h

TAGS: $(SRC)
	$(TAGS) $(SRC)

clean:
	rm -f *.o *~ core

spotless:
	rm -f *.o *~ core gnut2p TAGS