Magellan Linux

Contents of /alx-src/tags/alx-web-0_7_0_20171218_1/include/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11135 - (show annotations) (download)
Mon Dec 18 12:03:27 2017 UTC (6 years, 4 months ago) by niro
File size: 568 byte(s)
tagged 'alx-web-0_7_0_20171218_1'
1 include ../Makefile.inc
2
3 CONFIG = config.inc.php
4 FILES = basesql.php common-functions.php current-problems.php \
5 dbconn.php error.php ppping.inc.php socket_send.php
6
7 all: $(CONFIG) $(FILES)
8
9 install: all
10 $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/alx-web
11 $(INSTALL) -m0644 $(CONFIG) $(DESTDIR)/$(SYSCONFDIR)/alx-web
12 $(INSTALL) -d $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/include
13 $(INSTALL) -m0644 $(FILES) $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/include
14 $(LN) $(SYSCONFDIR)/alx-web/$(CONFIG) $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/include/$(CONFIG)
15
16 clean:
17
18 .PHONY: all install clean