Skip to content

Commit

Permalink
240713
Browse files Browse the repository at this point in the history
  • Loading branch information
Pozsar Zsolt committed Jul 13, 2024
1 parent ec49b3f commit bca8e59
Show file tree
Hide file tree
Showing 57 changed files with 3,910 additions and 2,527 deletions.
394 changes: 232 additions & 162 deletions LICENCE

Large diffs are not rendered by default.

30 changes: 16 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,39 +1,41 @@
# +----------------------------------------------------------------------------+
# | MM8DRead v0.3 * Status reader program for MM8D device |
# | Copyright (C) 2020-2022 Pozsár Zsolt <pozsar.zsolt@szerafingomba.hu> |
# | MM8DRead v0.4 * Status reader program for MM8D device |
# | Copyright (C) 2020-2024 Pozsár Zsolt <pozsarzs@gmail.com> |
# | Makefile |
# | Makefile for Unix-like systems |
# +----------------------------------------------------------------------------+

include ./Makefile.global

dirs = desktop documents languages manuals source
srcdirs = source
dirs = desktop documents manuals messages source

all:
@echo Compiling $(name):
@for dir in $(srcdirs); do \
@echo "Compiling source code..."
@for dir in $(dirs); do \
if [ -e Makefile ]; then make -s -C $$dir all; fi; \
done
@echo "Source code is compiled."
@echo "Done."

clean:
@echo Cleaning source code:
@for dir in $(srcdirs); do \
@echo "Cleaning source code..."
@for dir in $(dirs); do \
if [ -e Makefile ]; then make -s -C $$dir clean; fi; \
done
@echo "Source code is cleaned."
@$(rm) config.log
@$(rm) config.status
@$(rm) Makefile.global
@echo "Done."

install:
@echo Installing $(name):
@echo "Installing program to "$(prefix)":"
@for dir in $(dirs); do \
if [ -e Makefile ]; then make -s -C $$dir install; fi; \
done
@echo "Application is installed."
@echo "Done."

uninstall:
@echo Removing $(name):
@echo "Removing program from "$(prefix)":"
@for dir in $(dirs); do \
if [ -e Makefile ]; then make -s -C $$dir uninstall; fi; \
done
@echo "Application is removed."
@echo "Done."
17 changes: 10 additions & 7 deletions Makefile.global.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# +----------------------------------------------------------------------------+
# | MM8DRead v0.3 * Status reader program for MM8D device |
# | Copyright (C) 2020-2022 Pozsár Zsolt <pozsar.zsolt@szerafingomba.hu> |
# | MM8DRead v0.4 * Status reader program for MM8D device |
# | Copyright (C) 2020-2024 Pozsár Zsolt <pozsarzs@gmail.com> |
# | Makefile.global |
# | Global makefile for Unix-like systems |
# +----------------------------------------------------------------------------+

copyright = @copyright@
name = mm8dread
version = @version@
architecture = @architecture@
Expand All @@ -20,28 +21,30 @@ mandir = @mandir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
lcldir = @lazdir@
vardir = @vardir@

binmode = 0755
txtmode = 0644

install = @install@
ln = @ln@ --symbolic --force
make = @make@
rm = @rm@ -f
rm = @rm@ --force
rmdir = @rmdir@ --ignore-fail-on-non-empty

fpflag = -T@os@ \
-dUseFHS \
-MObjFPC \
-Scgi \
-O1 \
-ve \
-Fu./synapse/ \
-Fu../synapse/ \
-Fu@lcldir@/../components/lazutils/lib/@architecture@-@os@/ \
-Fu@lcldir@/../packager/units/@architecture@-@os@/ \
-Fu@lcldir@/units/@architecture@-@os@/ \
-Fu@lcldir@/units/@architecture@-@os@/gtk2/ \
-Fu. \
-Fu./lib/@architecture@-@os@/ \
-FE./lib/@architecture@-@os@/ \
-Fu../lib/@architecture@-@os@/ \
-FE../lib/@architecture@-@os@/ \
-dLCL \
-dLCLgtk2

26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
**MM8DRead * Status reader program for MM8D device**
Copyright (C) 2020-2022 Pozsár Zsolt <pozsarzs@gmail.com>
## MM8DRead * Status reader program for MM8D device
Copyright (C) 2020-2024 Pozsár Zsolt <pozsarzs@gmail.com>
Homepage: <http://www.pozsarzs.hu>
GitHub: <https://github.com/pozsarzs/mm8dread>

**Software**
#### Software
|features | |
|:---------------------|-----------------------|
|architecture |amd64, i386 |
|operation system |FreeBSD, Linux, Windows|
|version |v0.4 |
|language |en |
|licence |EUPL v1.2 |
|local user interface |GUI |
|remote data access |HTTP |

- architecture: amd64, i386
- operation system: Linux, Windows
- version: v0.3
- language: en
- licence: EUPL v1.1
- user interface: GUI
#### External libraries in package

**External libraries in package**

- Ararat Synapse by Lukas Gebauer
- [Ararat Synapse](http://www.ararat.cz/synapse) library by Lukas Gebauer
6 changes: 2 additions & 4 deletions build.bat
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
@echo off
rem ----------------------------------------------------------------------------
rem MM8DRead v0.3 * Status reader program for MM8D device
rem Copyright (C) 2020-2022 Pozsár Zsolt pozsar.zsolt@szerafingomba.hu
rem MM8DRead v0.4 * Status reader program for MM8D device
rem Copyright (C) 2020-2024 Pozsár Zsolt pozsarzs@gmail.com
rem build.bat
rem Utility for build/install/uninstall application on Windows
rem ----------------------------------------------------------------------------

set PPC=c:\lazarus\fpc\3.0.4\bin\i386-win32\ppc386.exe
set LAZ=c:\lazarus\
Expand Down
Empty file modified config/config.guess
100644 → 100755
Empty file.
Empty file modified config/config.sub
100644 → 100755
Empty file.
Empty file modified config/install-sh
100644 → 100755
Empty file.
5 changes: 2 additions & 3 deletions config/mkshortcut.vbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'+-----------------------------------------------------------------------------+
'| MM8DRead v0.3 * Status reader program for MM8D device |
'| Copyright (C) 2020-2022 Pozsár Zsolt <pozsar.zsolt@szerafingomba.hu> |
'| MM8DRead v0.4 * Status reader program for MM8D device |
'| Copyright (C) 2020-2024 Pozsár Zsolt <pozsarzs@gmail.com> |
'| mkshortcut.vbs |
'| Make shortcut |
'+-----------------------------------------------------------------------------+
Expand All @@ -10,4 +10,3 @@ set oShellLink = WshShell.CreateShortcut(Wscript.Arguments.Named("shortcut") & "
oShellLink.TargetPath = Wscript.Arguments.Named("target")
oShellLink.WindowStyle = 1
oShellLink.Save

Loading

0 comments on commit bca8e59

Please sign in to comment.