head	1.3;
access;
symbols
	V1_6_7:1.3
	V1_6_6:1.3
	V1_6_5:1.3
	V1_6_4:1.3
	V1_6_3:1.3;
locks; strict;
comment	@# @;


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

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

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


desc
@@


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

include ../../makefile.all

LIBS=-lusr -lc

tick: $(OBJS)
	rm -f tick
	$(LD) $(LDFLAGS) -o tick $(CRT0) $(OBJS) $(LIBS)

tst: tst.o
	rm -f tst
	$(LD) $(LDFLAGS) -o tst $(CRT0) tst.o $(LIBS)

install:
	: # Nothing; this is a demo/test filesystem
@


1.2
log
@Add support for select()
@
text
@d1 1
a1 5
CC=gcc
LD=ld
INCS=-I../../../include
CFLAGS=-g -Wall $(INCS)
LDFLAGS= -L../../lib
d3 4
a7 5
CRT0=../../lib/crt0.o

all: tick
.c.o:
	$(CC) $(CFLAGS) -c $*.c
d17 2
a18 5
clean:
	rm -f *.o

clobber: clean
	rm -f tick tst
@


1.1
log
@Initial revision
@
text
@d4 1
a4 1
CFLAGS=-Wall $(INCS)
d6 1
a6 1
OBJS=main.o rw.o
d15 1
d18 4
d26 1
a26 1
	rm -f tick test
@
