
include ../src/Makefile

# setting
SRCDIR=../src
INCDIR=../include
CMNINCDIR=../../libcommonString/include
CFLAGS=-I$(INCDIR) -I$(CMNINCDIR) -I$(SRCDIR)

TARGET=libctlParameter.a
VPATH=$(SRCDIR)
OBJS=$(SRCS:.c=.o)

all:: $(TARGET)

$(TARGET): $(OBJS)
	ar rv $@ $?

clean:
	rm -f *.o *.a


