dect
/
asterisk
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
asterisk/stdtime/Makefile

30 lines
342 B
Makefile

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
depend: .depend
.depend:
../build_tools/mkdep $(CFLAGS) *.c
test: test.c
${CC} ${CFLAGS} -o test test.c
ifneq ($(wildcard .depend),)
include .depend
endif