1# Copyright Siemens AG 2014
2#
3# Copying and distribution of this file, with or without modification,
4# are permitted in any medium without royalty provided the copyright
5# notice and this notice are preserved.  This file is offered as-is,
6# without any warranty.
7
8TOP = ../../..
9VARS = $(TOP)/Makefile.conf
10include $(VARS)
11
12MOD_NAME = readmeoss
13MOD_SUBDIR = ui
14
15all:
16	@echo "nothing to do"
17
18install:
19	mkdir -p $(DESTDIR)$(MODDIR)/$(MOD_NAME)/$(MOD_SUBDIR)
20	$(INSTALL_DATA) ./*.php $(DESTDIR)$(MODDIR)/$(MOD_NAME)/$(MOD_SUBDIR)
21
22uninstall:
23	rm -rf $(DESTDIR)$(MODDIR)/$(MOD_NAME)/$(MOD_SUBDIR)
24
25clean:
26	@echo "nothing to do"
27
28.PHONY: all install uninstall clean
29