head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	96.04.09.23.28.53;	author nate;	state dead;
branches;
next	1.1;

1.1
date	95.08.24.09.00.35;	author phk;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Removed original distribution files that are no longer valid.
@
text
@#
#	Makefile for PCMCIA card programs.
#
CFLAGS = -m486 -g # -DDEBUG

PROGS = dumpcis rdmap rdreg wrreg pccardmem wrattr enabler

all: $(PROGS)

clean:
	rm -f *.core core *.o $(PROGS)

dumpcis: dumpcis.o readcis.o printcis.o
	cc -o dumpcis -static dumpcis.o readcis.o printcis.o

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

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

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

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

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

wrreg: wrreg.c
	cc $(CFLAGS) -o wrreg wrreg.c
@


1.1
log
@The userland part of Andrew McRae's PCMCIA/PCCARD code.

This is not quite finished yet, and therefore I have not added it to the
usr.sbin/Makefile yet.
I collected a bunch of Andrews small programs into one: pccardc /phk

Reviewed by:	phk
Submitted by:	Andrew McRae <andrew@@mega.com.au>
@
text
@@
