
srcdir := ..
include $(srcdir)/config.mk


SRCS	= $(wildcard *.c)
TARGETS	= $(SRCS:%.c=%.o)

all: $(TARGETS)

install:

clean:
	rm -f $(TARGETS) *~
