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


1.4
date	97.06.04.04.47.13;	author david;	state Exp;
branches;
next	1.3;

1.3
date	97.06.04.04.30.53;	author david;	state Exp;
branches;
next	1.2;

1.2
date	97.06.04.04.28.56;	author david;	state Exp;
branches;
next	1.1;

1.1
date	97.06.04.03.01.53;	author david;	state Exp;
branches;
next	;


desc
@Initial Version.
@


1.4
log
@Added versioning.
@
text
@#This MAKE file controls the 8 bit assembler library routine compilation.
#
# $Log: Makefile,v $
# Revision 1.3  1997/06/04 04:30:53  david
# Added backup function.
#
# Revision 1.2  1997/06/04 04:28:56  david
# ANSI-fied program.
#
#

VERSION = 4.0

OBJS = atob.o atoh.o db.o doline.o ds.o dw.o equ.o extern.o genobj.o getline.o \
   if.o include.o labproc.o macros.o main.o org.o parse.o printl.o public.o \
   srchrep.o strcmpi.o symtab.o upper.o xpend.o yyerror.o yywrap.o

libxasm.a : $(OBJS)
	ar cru libxasm.a $(OBJS)
	ranlib libxasm.a

backup : clean
	cd ..; tar cvzf xasm-devel-$(VERSION).tar.gz xasm-devel-$(VERSION)

clean :
	rm -f *.o *.a

# Library routine dependencies
db.o : xasm.h
doline.o : xasm.h macros.h
ds.o : xasm.h
dw.o : xasm.h
equ.o : xasm.h symbols.h
extern.o : xasm.h symbols.h
genobj.o : xasm.h
if.o : xasm.h
include.o : xasm.h
labproc.o : xasm.h symbols.h
macros.o : xasm.h macros.h
main.o : xasm.h macros.h symbols.h
org.o : xasm.h
printl.o : xasm.h
public.o : xasm.h symbols.h
symtab.o : xasm.h symbols.h
xpend.o : xasm.h
@


1.3
log
@Added backup function.
@
text
@d4 3
d12 2
d23 1
a23 1
	cd ..; tar cvzf xasmlib.tar.gz xasmlib
@


1.2
log
@ANSI-fied program.
@
text
@d3 4
a6 1
# $Log$
d16 3
@


1.1
log
@Initial revision
@
text
@d2 3
d10 3
a12 3
xasm8lib.a : $(OBJS)
	ar cru xasm8lib.a $(OBJS)
	ranlib xasm8lib.a
d14 2
a15 2
cleanup :
	rm -f *.o
@
