Files
asterisk/stdtime/Makefile
Matt O'Gorman 7d03c33e0a Allows for user to uninstall asterisk binaries
bug 6177


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9052 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2006-02-01 18:39:41 +00:00

27 lines
307 B
Makefile

OBJS=localtime.o
all: libtime.a
libtime.a: $(OBJS)
ar rv $@ $(OBJS)
ranlib $@
install:
uninstall:
clean:
rm -f libtime.a *.o test .depend
depend: .depend
.depend:
../build_tools/mkdep $(CFLAGS) *.c
test: test.c
${CC} ${CFLAGS} -o test test.c
ifneq ($(wildcard .depend),)
include .depend
endif