# Debug Library Makefile
#
# Author: Guto

include		$(EPOS)/makedefs

all		: libdebug.a

libdebug.a	: debug.o
		$(AR) $(AR_FLAGS) libdebug.a *.o

debug.o		: debug.c
		$(CC) $(CC_FLAGS) debug.c

install		: all
		$(INSTALL) libdebug.a $(LIB)

print		:
		$(PRINT1) $(INCLUDE)/system/debug.h debug.c $(PRINT2)

clean		:
		$(CLEAN) *.o *.a

