
root := ..
pre-targets := 
targets := ${root}/lib/libutilfuns.a
include ${root}/Makefile.cfg

cpp += Greek2Greek.cpp
cpp += utilstr.cpp

c += regex.c
c += utilstr.c

s = $(c) $(cpp)
d = $(c:%.c=%.d) $(cpp:%.cpp=%.d)
o = $(c:%.c=%.o) $(cpp:%.cpp=%.o)

${root}/lib/libutilfuns.a: $(o)
	rm -f $@
	$(AR) crs $@ $^

ifneq ($(nodeps),yes)
-include $(d)
endif
