From 44cd481eb2e59f30a73df033ff1e9e48bfd4eac2 Mon Sep 17 00:00:00 2001 From: "Jean-Marc Pigeon (Delson)" Date: Mon, 16 Jun 2025 14:49:13 -0400 Subject: [PATCH] Adding support starting shell script --- Makefile | 1 + Makefile.dist | 3 +++ starting.sh | 5 +++++ 3 files changed, 9 insertions(+) create mode 100644 starting.sh diff --git a/Makefile b/Makefile index f634279..6e5ef48 100644 --- a/Makefile +++ b/Makefile @@ -187,6 +187,7 @@ install : $(DESTDIR)/$(DATADIR)/$(APPN)/ @ cp -a \ shell \ + support \ $(DESTDIR)/$(LIBDIR)/$(APPN)/ #-------------------------------------------------------------------- diff --git a/Makefile.dist b/Makefile.dist index e98fdb3..1378a7c 100644 --- a/Makefile.dist +++ b/Makefile.dist @@ -34,6 +34,7 @@ tarfile : clean $(APLV)/lib \ $(APLV)/linux \ $(APLV)/shell \ + $(APLV)/support \ $(APLV) @ date > $(APLV)/$(APLV).build_date @ cp -a Makefile* $(APLV)/ @@ -44,6 +45,8 @@ tarfile : clean @ cp -a \ shell/getsysos.sh \ $(APLV)/shell/ + @ cp -a support/*.sh \ + $(APLV)/support @ cp -a app/Makefile $(APLV)/app/Makefile @ cp -a lib/Makefile $(APLV)/lib/Makefile @ tar zcf $(SRC)/$(APLV).tar.gz $(APLV) diff --git a/starting.sh b/starting.sh new file mode 100644 index 0000000..adbdaf1 --- /dev/null +++ b/starting.sh @@ -0,0 +1,5 @@ +#! /usr/bin/bash +#--------------------------------------------------------------- +#empty scrript for now +#--------------------------------------------------------------- +exit 0 -- 2.47.3