--- /dev/null Sat Apr 20 17:11:40 2002 +++ Makefile.orig Sat Apr 20 17:12:22 2002 @@ -0,0 +1,11 @@ +APXS = %%APXS%% +DSO = %%DSO%% +SRCS = mod_auth_mysql.c +OPTS = -D %%APACHE_VER%% -I%%LOCALBASE%%/include -L%%LOCALBASE%%/lib/mysql -lmysqlclient + +all: + $(APXS) -c $(OPTS) $(SRCS) + +install: + $(APXS) -i -a $(DSO) +