Magellan Linux

Contents of /alx-src/tags/alx-web-0_7_0_20170830_2/apache/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10656 - (show annotations) (download)
Wed Aug 30 14:48:43 2017 UTC (6 years, 9 months ago) by niro
File size: 308 byte(s)
tagged 'alx-web-0_7_0_20170830_2'
1 include ../Makefile.inc
2
3 APACHE_MODULES_CONF_DIR = $(SYSCONFDIR)/apache2/modules.d
4
5 FILES = alx-web.conf
6
7 all: $(FILES)
8
9 install: all
10 $(INSTALL) -d $(DESTDIR)/$(APACHE_MODULES_CONF_DIR)
11 $(INSTALL) -m0644 alx-web.conf $(DESTDIR)/$(APACHE_MODULES_CONF_DIR)
12
13 clean:
14 rm -f $(FILES)
15
16 .PHONY: all install clean