about summary refs log tree commit diff homepage
path: root/stp/c_interface/Makefile
blob: cf6b09d1e5a5275b3537d87928569506e31fde18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
include ../Makefile.common

SRCS = c_interface.cpp
OBJS = $(SRCS:.cpp=.o)

libcinterface.a: $(OBJS)
	$(AR) rc $@ $^
	$(RANLIB) $@

clean:	
	rm -rf *.o *~ *.a .#*

c_interface.o: c_interface.h