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

⟦6b6bebd24⟧ TextFile

    Length: 1209 (0x4b9)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/Sun/Mahjongg/Makefile« 

TextFile


#/*
# *	Copyright 1988, Mark Holm
# *			Exceptions
# *
# *	Acknowledgments to Dorothy Robinson for her artistic
# *	 abilities in drawing the icons and to Jim Batch for
# *	 technical support and graphical concepts (which I abandoned in favor
# *       of the easy way out).
# *
# *	Permission is given to copy and distribute for non-profit purposes.
# *
# */
#	Removed the DISTFILES? entries as they didn't match the
#	net distributed version and I didn't want to put in 37 entries.
#		Bill Randle, 6/17/88
#

#ifndef lint
# place to put the manual page
MANLOC = /ufs/play/man.sun

# Place to put the executable
DESTDIR = /ufs/play/games.sun

#Target machine - -DRDRUNNER only valid define
# currently only necessary when compiling icons.o
TARGET=

.c.o:
	cc -c $(CFLAGS) $< 

CFLAGS = -O 
#CFLAGS = -g 
#CFLAGS = -g -Bstatic    # 4.0 OS

SWOBJS = icons.o mahjongg.o event.o
SWLIBS= -lm -lsuntool -lsunwindow -lpixrect

mahjongg: $(SWOBJS)
	cc $(CFLAGS) -o mahjongg $(SWOBJS) $(SWLIBS)

install: mahjongg
	cp mahjongg $(DESTDIR)
	cp mahjongg.6 $(MANLOC)

mahjongg.o: mahjongg.h color.h

event.o: mahjongg.h

icons.o: icons.c 
	cc -c $(CFLAGS) $(TARGET) icons.c

clean:
	/bin/rm -f core mahjongg *.o swshar*