head	1.5;
access;
symbols
	Release02:1.5;
locks
	jeremy:1.5; strict;
comment	@# @;


1.5
date	93.05.11.16.01.15;	author jeremy;	state Exp;
branches;
next	1.4;

1.4
date	93.05.11.07.03.57;	author jeremy;	state Exp;
branches;
next	1.3;

1.3
date	93.05.10.07.22.33;	author jeremy;	state Exp;
branches;
next	1.2;

1.2
date	93.05.10.05.25.47;	author jeremy;	state Exp;
branches;
next	1.1;

1.1
date	93.05.06.07.48.18;	author jeremy;	state Exp;
branches;
next	;


desc
@First implementation
@


1.5
log
@Release of 0.2 (ALPHA)
@
text
@FLAGS=-O -Wall #-DDEBUG
C++=gcc
C++FLAGS = $(FLAGS)
CC=gcc
CFLAGS = $(FLAGS)

LDFLAGS = 

TMNTSRC = tmnt.cc itab.cc readdir.cc  $(SRC)
TMNTOBJ = tmnt.o itab.o readdir.o $(OBJ)
HOMESRC = home.c $(SRC)
HOMEOBJ = home.o $(OBJ)
SRC = userfs_types.c uio.c
OBJ = userfs_types.o uio.o

all: home tmnt

tmnt: $(TMNTOBJ)
	$(C++) $(LDFLAGS) $(C++FLAGS) -o $@@ $(TMNTOBJ)

home: $(HOMEOBJ)
	$(C++) $(LDFLAGS) $(C++FLAGS) -o $@@ $(HOMEOBJ)

depend:
	$(C++) $(C++FLAGS) -M `echo $(TMNTSRC) $(HOMESRC) $(SRC) | tr ' ' '\012' | sort -u` > .depend

include .depend

@


1.4
log
@Removed warning about userfs_types.[ch]
@
text
@@


1.3
log
@Added rule for userfs_types.[ch]
@
text
@a23 4
userfs_types.c userfs_types.h:
	@@echo "Make copies or links for $@@ from your kernel build tree"
	@@echo "Read the README for details"
	@@exit 1
@


1.2
log
@Removed debug
@
text
@d24 4
@


1.1
log
@Initial revision
@
text
@d1 1
a1 1
FLAGS=-O -Wall -DDEBUG
@
