CUR_REL_PATH := base/misc_lib/tests

include ../../shared/config.mk

TESTS = test_colorset
OBJS = $(patsubst %,%.o,$(TESTS))
DEPS = $(patsubst %.o,%.d,$(OBJS))

PRE_CPPFLAGS += -I../../include -I../
PRE_LDFLAGS += -L../../lib

LDLIBS += -lmisc
LINK.o = $(LINK.C)

test_colorset:	test_colorset.o

all: $(TESTS)

clean:
	rm -f core *.o *~ *.d $(TESTS)

install: 

test: all
	test_colorset

uninstall:

$(OBJS): Makefile

-include $(DEPS)
