Skip to content

Commit a23f20f

Browse files
committed
Add install to makefile, ignore some files, fix apache2 fab commands
1 parent 2d7d8f1 commit a23f20f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
src/*.o
22
src/*.so
3+
Makefile
4+
config.status
5+
config.log

Makefile.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ all: src/mod_redirectionio.so
1313
src/mod_redirectionio.so: $(OBJ)
1414
@CC@ -shared -fPIC -DPIC $(OBJ) @LDFLAGS@ @LIBS@ -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -g -O2 -fstack-protector-strong -Wl,-soname -Wl,mod_redirectionio.so -o $@
1515

16+
.PHONY: install
17+
install: src/mod_redirectionio.so
18+
cp src/mod_redirectionio.so @MODULE_DIR@/mod_redirectionio.so
19+
1620
.PHONY: clean
1721
clean:
1822
rm -f src/mod_redirectionio.so

0 commit comments

Comments
 (0)