#
# Makefile for SimTos
#
# Copyright (C) 1995, 1996 Daniel Wu.
# Distributed under the terms of the GNU Library General Public License.
#

CFLAGS	= -Wall -g
SRCS    = task.c init.c symtab.c prique.c mem.c msb.c mbx.c \
		efg.c sem.c time.c 
OBJS    = $(SRCS:.c=.o)

libsimtos.a: $(OBJS)
	@echo "Linking SiMTOS library"
	ar -r libsimtos.a $(OBJS)

clean:
	@rm -f $(OBJS)

depend:
	makedepend -- $(CFLAGS) -- $(SRCS)
	@rm -f Makefile.bak

# DO NOT DELETE THIS LINE -- make depend depends on it.

