Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15318 - (show annotations) (download)
Fri Aug 14 08:58:34 2020 UTC (4 years, 1 month ago) by niro
File size: 308 byte(s)
tagged 'alx-web-0_7_3_20200814_1'
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