############################################################################
# Clobberd - By Jason Nunn
# Copyright (C) Jason Nunn
#
# Clobberd comes under the GNU General Public License. Please read the
# COPYING notice in this distribution.
#
############################################################################
include ../make.config

all: ll_bt_test ll_bt_test2

clean:
	rm -f *.o ll_bt_test ll_bt_test2 core

###############################################
OBJ	= common.o ll_bt.o ll_bt_test.o

ll_bt_test: $(OBJ)
	$(CC) $(CFLAGS) -o ll_bt_test $(OBJ)
	strip ll_bt_test

###############################################
OBJ2	= common.o ll_bt.o ll_bt_test2.o

ll_bt_test2: $(OBJ2)
	$(CC) $(CFLAGS) -o ll_bt_test2 $(OBJ2)
	strip ll_bt_test2

%.o: %.c *.h
	$(CC) $(CFLAGS) -c $< -o $@
