head	1.16;
access;
symbols
	V1_6_7:1.16
	V1_6_6:1.16
	V1_6_5:1.16
	V1_6_4:1.16
	V1_6_3:1.16
	V1_6_2:1.15
	V1_6_1:1.14
	V1_6:1.14
	V1_5_2:1.13
	V1_4_1:1.12
	V1_4:1.12
	V1_3_3:1.11
	V1_3_1:1.9
	V1_3:1.9
	V1_2:1.8
	V1_1:1.8
	V1_0:1.5;
locks; strict;
comment	@# @;


1.16
date	2000.03.23.14.48.00;	author vandys;	state Exp;
branches;
next	1.15;

1.15
date	98.12.01.21.04.53;	author vandys;	state Exp;
branches;
next	1.14;

1.14
date	97.08.30.16.59.46;	author vandys;	state Exp;
branches;
next	1.13;

1.13
date	96.01.01.16.27.56;	author vandys;	state Exp;
branches;
next	1.12;

1.12
date	95.03.04.23.41.57;	author vandys;	state Exp;
branches;
next	1.11;

1.11
date	94.10.05.23.26.56;	author vandys;	state Exp;
branches;
next	1.10;

1.10
date	94.10.01.03.35.11;	author vandys;	state Exp;
branches;
next	1.9;

1.9
date	94.04.06.21.55.34;	author vandys;	state Exp;
branches;
next	1.8;

1.8
date	93.11.16.02.45.04;	author vandys;	state Exp;
branches;
next	1.7;

1.7
date	93.09.28.19.35.45;	author vandys;	state Exp;
branches;
next	1.6;

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

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

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

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

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

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


desc
@Makefile
@


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

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

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

install: all
	strip fd
	cp fd $(ROOT)/boot
@


1.15
log
@Turn on bounce buf support
@
text
@d1 1
a1 5
CC=gcc
LD=ld
INCS=-I../../../../include
CFLAGS=-DDEBUG $(INCS) -g
LDFLAGS=-L../../../lib
d3 1
a3 1
LIBS=-lusr -lc
d5 1
a5 3
all: fd
.c.o:
	$(CC) $(CFLAGS) -c $*.c
d8 1
a8 7
	$(LD) $(LDFLAGS) -o fd ../../../lib/crt0.o $(OBJS) $(LIBS)

clean:
	rm -f *.o

clobber: clean
	rm -f fd
d12 1
a12 1
	cp fd ../../../../boot
@


1.14
log
@Boot server link fiddling
@
text
@d1 7
a7 7
CC= gcc
LD= ld
INCS= -I../../../../include
CFLAGS= -DDEBUG $(INCS) -O
LDFLAGS= -L../../../lib
OBJS= main.o rw.o stat.o dir.o
LIBS= -lusr -lc
@


1.13
log
@Build boot server for fd
@
text
@d7 1
a7 1
LIBS= -lusr -lc_s
d14 1
a14 1
	$(LD) $(LDFLAGS) -o fd ../../../lib/crt0srv.o $(OBJS) $(LIBS)
@


1.12
log
@The great src/ renaming
@
text
@d7 1
a7 1
LIBS= -lusr -lc
d14 1
a14 1
	$(LD) $(LDFLAGS) -o fd ../../../lib/crt0.o $(OBJS) $(LIBS)
@


1.11
log
@Use optimizer
@
text
@d3 1
a3 1
INCS= -I../../../include
d5 1
a5 1
LDFLAGS= -L../../../libc
d14 1
a14 1
	$(LD) $(LDFLAGS) -o fd ../../../libc/crt0.o $(OBJS) $(LIBS)
d24 1
a24 1
	cp fd ../../../boot
@


1.10
log
@Fix makefiles for shared libraries
@
text
@d4 1
a4 1
CFLAGS= -DDEBUG $(INCS) -g
@


1.9
log
@Add clean, clobber, install targets
@
text
@d14 1
a14 1
	$(LD) $(LDFLAGS) -o fd ../../../libc/crt0srv.o $(OBJS) $(LIBS)
@


1.8
log
@Source reorg
@
text
@d5 1
a5 1
LDFLAGS= -L../../../libc -L../../../lib
d17 8
a24 2
	del *.o
	del fd
@


1.7
log
@Use del, not rm
@
text
@d3 1
a3 1
INCS= -I../include -I..
d5 1
a5 1
LDFLAGS= -L../libc -L../lib
d14 1
a14 1
	$(LD) $(LDFLAGS) -o fd ../libc/crt0srv.o $(OBJS) $(LIBS)
@


1.6
log
@Fix make clean
@
text
@d17 2
a18 1
	rm -f *.o fd
@


1.5
log
@Boot args work
@
text
@d15 3
@


1.4
log
@namer stuff in libc
@
text
@d14 1
a14 1
	$(LD) $(LDFLAGS) -o fd ../libc/crt0.o $(OBJS) $(LIBS)
@


1.3
log
@Fix makefile for build
@
text
@d7 1
a7 1
LIBS= ../namer/libnamer.a -lc -lusr
@


1.2
log
@Switch Makefile to use our C library and headers
@
text
@d7 1
a7 1
LIBS= -lc -lusr
@


1.1
log
@Initial revision
@
text
@d2 2
a3 1
INCS= -I..
d5 1
d7 1
a7 1
LIBS= ../msgfake/libc.a ../lib/libusr.a -lpc
d9 1
d14 1
a14 1
	$(CC) $(CFLAGS) -o fd $(OBJS) $(LIBS)
@
