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

⟦9413a13e1⟧ TextFile

    Length: 562 (0x232)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/MFcontrib/fonttool/Makefile« 
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/MFcontrib/fonttool/Makefile« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/MFcontrib/fonttool/Makefile« 

TextFile

# Makefile for fonttool.

CFLAGS =	-O -DSUN

CFILES =	main.c\
		global.c\
		message.c\
		view.c\
		option.c\
		paint.c\
		pixrops.c\
		pxl.c

OFILES = 	main.o\
		global.o\
		message.o\
		view.o\
		option.o\
		paint.o\
		pixrops.o\
		pxl.o

HFILES =	global.h\
		option.h\
		pxl.h

main: 	$(OFILES)
	cc ${CFLAGS} ${OFILES} -lsuntool -lsunwindow -lpixrect -o fonttool

clean:
	rm *.o

# dependencies:
main.o:		global.h
global.o:	global.h
message.o:	global.h
view.o:		global.h
option.o:	global.h option.h
paint.o:	global.h
pxl.o:		global.h pxl.h
pixrops.o:	global.h