ALL_FILES = ccs_param_test ccs_log_test

all: $(ALL_FILES)

CC=gcc

CFLAGS=-Wall -O2

#
# Tools for kernel testing.
#

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

#
# Delete all test programs.
#

clean:
	rm -f $(ALL_FILES)
