This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats/adns/Makefile

42 lines
1.1 KiB
Makefile
Raw Permalink Normal View History

2002-07-31 03:27:36 +00:00
include ../Makefile.inc
INCLUDES = -I..
2004-02-02 23:00:38 +00:00
SRCS = check.c event.c general.c parse.c query.c reply.c setup.c transmit.c types.c
OBJS = ${SRCS:.c=.o}
all: $(OBJS)
2002-07-31 03:27:36 +00:00
.c.o:
$(CC) $(CFLAGS) $(INCLUDES) -c $<
2002-07-31 03:27:36 +00:00
clean:
$(RM) *.o *.lo *.so *.a *.exe config.h
distclean:
$(RM) *.o *.lo *.so *.a *.exe config.h
2002-07-31 03:27:36 +00:00
depend:
2004-01-31 22:00:40 +00:00
$(CC) -MM $(INCLUDES) $(CFLAGS) $(SRCS) > .depend
2004-01-31 22:00:40 +00:00
install:
2004-02-02 23:38:55 +00:00
$(INSTALL_DATA) adns.h $(INCDIRECTORY)
2002-07-31 03:27:36 +00:00
2004-01-31 22:00:40 +00:00
DISTFILES =*.c adns.h dlist.h internal.h tvarith.h Makefile *.in
dist:
@for file in $(DISTFILES); do \
cp -pr $$file $(DISTDIR)/$$file; \
done
$(OBJS): Makefile ../Makefile.inc
2002-07-31 03:27:36 +00:00
check.o: check.c internal.h config.h adns.h dlist.h
event.o: event.c internal.h config.h adns.h dlist.h tvarith.h
general.o: general.c internal.h config.h adns.h dlist.h
parse.o: parse.c internal.h config.h adns.h dlist.h
query.o: query.c internal.h config.h adns.h dlist.h
reply.o: reply.c internal.h config.h adns.h dlist.h
setup.o: setup.c internal.h config.h adns.h dlist.h
transmit.o: transmit.c internal.h config.h adns.h dlist.h tvarith.h
types.o: types.c internal.h config.h adns.h dlist.h