Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
Merge pull request #10 from mundialis/split-addon
Browse files Browse the repository at this point in the history
Split into multimodule
  • Loading branch information
mmacata authored Oct 2, 2024
2 parents 40d1e00 + 60a2507 commit a835f20
Show file tree
Hide file tree
Showing 16 changed files with 76 additions and 91 deletions.
39 changes: 0 additions & 39 deletions .pylintrc

This file was deleted.

50 changes: 0 additions & 50 deletions .pylintrc_allowed_to_fail

This file was deleted.

14 changes: 12 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ MODULE_TOPDIR = ../..

PGM = r.slopeunits

include $(MODULE_TOPDIR)/include/Make/Script.make
# note: to deactivate a module, just place a file "DEPRECATED" into the subdir
ALL_SUBDIRS := ${sort ${dir ${wildcard */.}}}
DEPRECATED_SUBDIRS := ${sort ${dir ${wildcard */DEPRECATED}}}
RM_SUBDIRS := bin/ docs/ etc/ scripts/
SUBDIRS_1 := $(filter-out $(DEPRECATED_SUBDIRS), $(ALL_SUBDIRS))
SUBDIRS := $(filter-out $(RM_SUBDIRS), $(SUBDIRS_1))

default: script
include $(MODULE_TOPDIR)/include/Make/Dir.make

default: parsubdirs htmldir

install: installsubdirs
$(INSTALL_DATA) $(PGM).html $(INST_DIR)/docs/html/
7 changes: 7 additions & 0 deletions r.slopeunits.clean/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
MODULE_TOPDIR = ../..

PGM = r.slopeunits.clean

include $(MODULE_TOPDIR)/include/Make/Script.make

default: script
9 changes: 9 additions & 0 deletions r.slopeunits.clean/r.slopeunits.clean.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<h2>DESCRIPTION</h2>

<h2>NOTES</h2>

<h2>EXAMPLE</h2>

<h2>SEE ALSO</h2>

<h2>AUTHORS</h2>
Empty file.
7 changes: 7 additions & 0 deletions r.slopeunits.create/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
MODULE_TOPDIR = ../..

PGM = r.slopeunits.create

include $(MODULE_TOPDIR)/include/Make/Script.make

default: script
9 changes: 9 additions & 0 deletions r.slopeunits.create/r.slopeunits.create.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<h2>DESCRIPTION</h2>

<h2>NOTES</h2>

<h2>EXAMPLE</h2>

<h2>SEE ALSO</h2>

<h2>AUTHORS</h2>
File renamed without changes.
7 changes: 7 additions & 0 deletions r.slopeunits.metrics/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
MODULE_TOPDIR = ../..

PGM = r.slopeunits.metrics

include $(MODULE_TOPDIR)/include/Make/Script.make

default: script
File renamed without changes.
9 changes: 9 additions & 0 deletions r.slopeunits.metrics/r.slopeunits.metrics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<h2>DESCRIPTION</h2>

<h2>NOTES</h2>

<h2>EXAMPLE</h2>

<h2>SEE ALSO</h2>

<h2>AUTHORS</h2>
Empty file.
7 changes: 7 additions & 0 deletions r.slopeunits.optimize/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
MODULE_TOPDIR = ../..

PGM = r.slopeunits.optimize

include $(MODULE_TOPDIR)/include/Make/Script.make

default: script
9 changes: 9 additions & 0 deletions r.slopeunits.optimize/r.slopeunits.optimize.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<h2>DESCRIPTION</h2>

<h2>NOTES</h2>

<h2>EXAMPLE</h2>

<h2>SEE ALSO</h2>

<h2>AUTHORS</h2>
Empty file.

0 comments on commit a835f20

Please sign in to comment.