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 - download
Index: ┃ D T

⟦ccd00cd31⟧ TextFile

    Length: 785 (0x311)
    Types: TextFile
    Names: »DIALOG.mk«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« 
        └─⟦2109abc41⟧ 
            └─ ⟦this⟧ »./X.V10R4/Toolkit/Xr/src/Xrlib/Dialog/DIALOG.mk« 

TextFile

#   
CCROOT=/
CC=$(CCROOT)/bin/cc
AS=$(CCROOT)/bin/as
AR=$(CCROOT)/bin/ar
LD=$(CCROOT)/bin/ld

INCRT = ../../include
LIBNAME = ../libXr.a
FRC =

FILES =\
	panelmgr.o\
	MsgBox.o\
	MenuEdit.o\
	MenuMgr.o

all:	$(LIBNAME) 

.PRECIOUS:	$(LIBNAME)

$(LIBNAME):	$(FILES)

.s.a:
	$(AS) -o $*.o $<

.c.o:
	$(CC) -c -I$(INCRT) $(CFLAGS) -D$(OS) $<
	$(AR) rlv $(LIBNAME) $*.o

clean:
	-rm -f *.o

clobber:	clean
	-rm -f $(LIBNAME)

panelmgr.o:\
	$(INCRT)/Xr/types.h\
	$(INCRT)/Xr/defs.h\
	$(INCRT)/Xr/in_types.h\
	$(FRC)


MsgBox.o:\
	$(INCRT)/Xr/types.h\
	$(INCRT)/Xr/defs.h\
	$(INCRT)/Xr/in_types.h\
	$(FRC)

MenuEdit.o:\
	$(INCRT)/Xr/types.h\
	$(INCRT)/Xr/defs.h\
	$(INCRT)/Xr/in_types.h\
	$(FRC)

MenuMgr.o:\
	$(INCRT)/Xr/types.h\
	$(INCRT)/Xr/defs.h\
	$(INCRT)/Xr/in_types.h\
	$(FRC)

FRC: