home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-12-28 | 585 b | 23 lines |
- # If you want to refuse connections from hosts or domains listed in an external
- # file, define the HOSTS_DENY macro to be a valid path name, for example:
- #
- # CFLAGS = -O -DHOSTS_DENY=\"/etc/hosts.deny\"
- #
- # The format of the file is: one host or domain per line; case does not matter.
-
- CFLAGS = -O -DHOSTS_DENY=\"/etc/hosts.deny\"
-
- all: tcpd miscd
-
- tcpd: tcpd.o hosts_deny.o
- $(CC) $(CFLAGS) -o $@ tcpd.o hosts_deny.o
-
- miscd: miscd.o hosts_deny.o
- $(CC) $(CFLAGS) -o $@ miscd.o hosts_deny.o
-
- shar:
- @shar miscd.c tcpd.c hosts_deny.c makefile README
-
- clean:
- rm -f tcpd miscd *.o core
-