Magellan Linux

Annotation of /alx-src/branches/alx-web-070/apache/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8535 - (hide annotations) (download)
Mon Feb 8 12:21:03 2016 UTC (8 years, 3 months ago) by niro
File size: 308 byte(s)
-added initial Makefile build system
1 niro 8535 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