Files
asterisk/main/stdtime/Makefile
T

30 lines
346 B
Makefile
Raw Normal View History

2003-09-27 02:32:30 +00:00
OBJS=localtime.o
2003-09-27 02:32:30 +00:00
all: libtime.a
2003-09-27 02:32:30 +00:00
libtime.a: $(OBJS)
ar rv $@ $(OBJS)
ranlib $@
2003-10-25 17:56:14 +00:00
install:
uninstall:
clean-depend:
rm -f .depend
clean: clean-depend
2008-11-20 00:08:12 +00:00
rm -f libtime.a *.o test *.i
2003-09-27 02:32:30 +00:00
depend: .depend
2003-09-27 02:32:30 +00:00
.depend:
../build_tools/mkdep $(CFLAGS) *.c
2003-09-27 02:32:30 +00:00
test: test.c
${CC} ${CFLAGS} -o test test.c
2003-09-27 02:32:30 +00:00
ifneq ($(wildcard .depend),)
include .depend
endif