- tms-old
- tms
- libBDebug
- Makefile
This file ( 713B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
################################################################################
# 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