head	1.6;
access;
symbols
	V1_6_7:1.6
	V1_6_6:1.6
	V1_6_5:1.6
	V1_6_4:1.6
	V1_6_3:1.6
	V1_6_2:1.5
	V1_6_1:1.5
	V1_6:1.5
	V1_5_2:1.5
	V1_4_1:1.5
	V1_4:1.5
	V1_3_3:1.4;
locks; strict;
comment	@# @;


1.6
date	2000.03.23.14.48.00;	author vandys;	state Exp;
branches;
next	1.5;

1.5
date	95.03.04.23.41.57;	author vandys;	state Exp;
branches;
next	1.4;

1.4
date	94.10.01.03.35.11;	author vandys;	state Exp;
branches;
next	1.3;

1.3
date	94.06.03.04.47.16;	author vandys;	state Exp;
branches;
next	1.2;

1.2
date	94.05.30.21.27.12;	author vandys;	state Exp;
branches;
next	1.1;

1.1
date	94.05.30.04.21.59;	author vandys;	state Exp;
branches;
next	;


desc
@@


1.6
log
@Makefile reorg; include master source is in vsta/src.  Centralize
common parameters.
@
text
@COPTS=-Wall
OBJS=main.o rw.o dir.o stat.o
OUT=nvram

include ../../../makefile.all

nvram: $(OBJS)
	$(LD) $(LDFLAGS) -o nvram $(CRT0) $(OBJS) -lusr -lc

install: nvram
	strip nvram
	cp nvram $(ROOT)/boot
@


1.5
log
@The great src/ renaming
@
text
@d1 3
a3 9
CC	= gcc
LD	= ld
RM	= rm -f
INCS	= -I../../../../include
CFLAGS	= -Wall $(INCS)
LDFLAGS	= -L../../../lib
OBJS	= main.o rw.o dir.o stat.o
LIBS	= -lusr -lc
CRT0	= ../../../lib/crt0.o
d5 1
a5 4
.c.o:
	$(CC) $(CFLAGS) -c $*.c

all: nvram
d8 1
a8 7
	$(LD) $(LDFLAGS) -o nvram $(CRT0) $(OBJS) $(LIBS)

clean:
	$(RM) *.o

clobber: clean
	$(RM) nvram
d12 1
a12 1
	cp nvram ../../../../boot
@


1.4
log
@Fix makefiles for shared libraries
@
text
@d4 1
a4 1
INCS	= -I../../../include
d6 1
a6 1
LDFLAGS	= -L../../../libc
a7 1
CLIB	= ../../../libc/libc.a
d9 1
a9 1
CRT0	= ../../../libc/crt0.o
d27 1
a27 1
	cp nvram ../../../boot
@


1.3
log
@Add make install
@
text
@d10 1
a10 1
CRT0	= ../../../libc/crt0srv.o
@


1.2
log
@Syslog support, bug fix
@
text
@d25 4
@


1.1
log
@Initial revision
@
text
@d5 2
a6 2
CFLAGS	= -Wall $(INCS) -O2
LDFLAGS	= -L../../../libc -L../../../lib
d23 1
a23 1
realclean: clean
@
