mirror of https://github.com/sipwise/asterisk.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
346 B
30 lines
346 B
OBJS=localtime.o
|
|
|
|
all: libtime.a
|
|
|
|
libtime.a: $(OBJS)
|
|
ar rv $@ $(OBJS)
|
|
ranlib $@
|
|
|
|
install:
|
|
|
|
uninstall:
|
|
|
|
clean-depend:
|
|
rm -f .depend
|
|
|
|
clean: clean-depend
|
|
rm -f libtime.a *.o test *.i
|
|
|
|
depend: .depend
|
|
|
|
.depend:
|
|
../build_tools/mkdep $(CFLAGS) *.c
|
|
|
|
test: test.c
|
|
${CC} ${CFLAGS} -o test test.c
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|