summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd/support/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/httpd/support/Makefile')
-rw-r--r--usr.sbin/httpd/support/Makefile52
1 files changed, 0 insertions, 52 deletions
diff --git a/usr.sbin/httpd/support/Makefile b/usr.sbin/httpd/support/Makefile
deleted file mode 100644
index 6270d87db1e..00000000000
--- a/usr.sbin/httpd/support/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-###############
-# Platform: OpenBSD
-# Final Rules:
-# Rule WANTHSREGEX=no
-###############
-CC=gcc
-OPTIM=-O2
-CFLAGS1=
-INCLUDES1=
-LIBS1=
-LFLAGS1=
-BROKEN_BPRINTF_FLAGS=
-REGLIB=
-RANLIB=ranlib
-SHELL=/bin/sh
-
-#### End of Configure created section ####
-# Apache makefile template (well, suffix).
-
-# This is combined with the information in the "Configuration" file
-# by the configure script to make the actual Makefile.
-
-CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
-LIBS=$(EXTRA_LIBS) $(LIBS1)
-INCLUDES=-I../src -I../src/regex $(INCLUDES1) $(EXTRA_INCLUDES)
-LFLAGS=$(LFLAGS1) $(EXTRA_LFLAGS)
-
-.c.o:
- $(CC) -c $(CFLAGS) $(INCLUDES) $<
-
-TARGETS=htpasswd htdigest httpd_monitor rotatelogs logresolve
-
-all: $(TARGETS)
-
-htpasswd: htpasswd.c
- $(CC) $(CFLAGS) htpasswd.c -o htpasswd $(LIBS)
-
-htdigest: htdigest.c
- $(CC) $(CFLAGS) htdigest.c -o htdigest
-
-httpd_monitor: httpd_monitor.c
- $(CC) $(INCLUDES) $(CFLAGS) httpd_monitor.c -o httpd_monitor
-
-rotatelogs: rotatelogs.c
- $(CC) $(INCLUDES) $(CFLAGS) rotatelogs.c -o rotatelogs
-
-logresolve: logresolve.c
- $(CC) $(INCLUDES) $(CFLAGS) logresolve.c -o logresolve $(LIBS)
-
-clean:
- rm -f $(TARGETS)
-