Skip to content

Commit

Permalink
add autoconf
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarbonneaux committed Apr 28, 2016
1 parent 6c4372d commit d1683ca
Show file tree
Hide file tree
Showing 5 changed files with 4,501 additions and 18 deletions.
14 changes: 14 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
18 changes: 0 additions & 18 deletions Makefile

This file was deleted.

19 changes: 19 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
MODULE_NAME=mod_auth_memcookie
APXS=@APXS@
LDFLAGS_LIBMEMCACHE=-lmemcache -L@LIBMEMCACHE_DIR@/lib
CFLAGS_LIBMEMCACHE=-I@LIBMEMCACHE_DIR@/include

all: $(MODULE_NAME).la

$(MODULE_NAME).la: $(MODULE_NAME).c
$(APXS) $(LDFLAGS_LIBMEMCACHE) $(CFLAGS_LIBMEMCACHE) -c $(MODULE_NAME).c

install: $(MODULE_NAME).la
$(APXS) -i -n $(MODULE_NAME) $(MODULE_NAME).la

clean:
-rm -f $(MODULE_NAME).o $(MODULE_NAME).lo $(MODULE_NAME).la $(MODULE_NAME).slo
-rm -rf autom4te.cache .libs

distclean: clean
-rm -f config.log config.status Makefile
Loading

0 comments on commit d1683ca

Please sign in to comment.