Commit 7983afd7 authored by Paul Querna's avatar Paul Querna
Browse files

Makefile.in: Don't try to compile checkgid and fcgistarter on win32 when using...

Makefile.in: Don't try to compile checkgid and fcgistarter on win32 when using the autotools build system.
/support: Update svn:ignore for generated exe files

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@422298 13f79535-47bb-0310-9956-ffa450edef68
parent b526241a
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -3,7 +3,12 @@ DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \

CLEAN_TARGETS = suexec

PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm htcacheclean httxt2dbm fcgistarter
PROGRAMS = htpasswd htdigest rotatelogs logresolve ab htdbm htcacheclean httxt2dbm

ifneq (win32,${OS})
  PROGRAMS += checkgid fcgistarter
endif

TARGETS  = $(PROGRAMS)

PROGRAM_LDADD        = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS)