RSS Git Download  Clone
Raw Blame History
################################################################################
#	Makefile
#		T.Barnaby,	BEAM Ltd,	2007-10-17
################################################################################
#
TOP	= ..

include ${TOP}/Makefile.config

DEBUGFLAGS	= -g
LDFLAGS 	+= -rdynamic

INCLUDES	= BDebug.h
OBJS		= BDebug.o

all:	libBDebug.a
	mkdir -p $(SRCINCDIR)
	cp $(CPFLAGS) $(INCLUDES) $(SRCINCDIR)
	mkdir -p $(SRCLIBDIR)
	cp libBDebug$(DARCH).a $(SRCLIBDIR)/libBDebug.a

install: all
	mkdir -p $(INCDIR)
	cp $(INCLUDES) $(INCDIR)
	mkdir -p $(LIBDIR)
	cp libBDebug$(DARCH).a $(LIBDIR)/libBDebug.a
	
clean:
	rm -f a.out core *.o *.a t bt

libBDebug.a:	$(OBJS)
	rm -f $@
	ar cq $@ $^
	
t:	t.o libBDebug.a