blob: cd94ad94f11475afdbb3e7fd05c1e6a238220d2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include ../Makefile.common
SRCS = constantbv.cpp
OBJS = $(SRCS:.cpp=.o)
libconstantbv.a: $(OBJS)
$(AR) rc $@ $^
$(RANLIB) $@
clean:
rm -rf *.o *~ *.a .#*
constantbv.o: constantbv.h
|