diff --git a/Makefile b/Makefile index 225660e..cac1d16 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,21 @@ +default: gitstatus + help: @echo Possible targets: init giti init: @python3 __scripts__/init.py -status: +gitstatus: @make --no-print-directory -C applications $@ + @make --no-print-directory -C clients $@ + @make --no-print-directory -C django $@ @make --no-print-directory -C embedded_linux $@ + @make --no-print-directory -C garbage_disposal $@ @make --no-print-directory -C linux_env $@ + @make --no-print-directory -C pylibs $@ @make --no-print-directory -C python_apps $@ + @make --no-print-directory -C server $@ + @make --no-print-directory -C smarthome $@ @make --no-print-directory -C unittest $@ diff --git a/applications/Makefile b/applications/Makefile index a0a2177..6ca9b3c 100644 --- a/applications/Makefile +++ b/applications/Makefile @@ -1,5 +1,5 @@ -status: - @echo "\n\n\033[1;34m╔═══════════╗" - @echo "║ linux_env ║" - @echo "╚═══════════╝\033[00m" +gitstatus: + @echo "\n\n\033[1;34m╔══════════════╗" + @echo "║ applications ║" + @echo "╚══════════════╝\033[00m" @ineach "giti -s && echo -n ' - ' && pwd" diff --git a/clients/Makefile b/clients/Makefile new file mode 100644 index 0000000..60499db --- /dev/null +++ b/clients/Makefile @@ -0,0 +1,5 @@ +gitstatus: + @echo "\n\n\033[1;34m╔═════════╗" + @echo "║ clients ║" + @echo "╚═════════╝\033[00m" + @ineach "giti -s && echo -n ' - ' && pwd" diff --git a/django/Makefile b/django/Makefile index d2633cf..01b8aaa 100644 --- a/django/Makefile +++ b/django/Makefile @@ -1,5 +1,5 @@ -status: - @echo "\n\n\033[1;34m╔═══════════╗" - @echo "║ linux_env ║" - @echo "╚═══════════╝\033[00m" - @ineach "giti -s && echo -n " - " && pwd" +gitstatus: + @echo "\n\n\033[1;34m╔════════╗" + @echo "║ django ║" + @echo "╚════════╝\033[00m" + @ineach "giti -s && echo -n ' - ' && pwd" diff --git a/linux_env/Makefile b/linux_env/Makefile index a0a2177..b68675b 100644 --- a/linux_env/Makefile +++ b/linux_env/Makefile @@ -1,4 +1,4 @@ -status: +gitstatus: @echo "\n\n\033[1;34m╔═══════════╗" @echo "║ linux_env ║" @echo "╚═══════════╝\033[00m" diff --git a/python_apps/Makefile b/python_apps/Makefile index a0a2177..1cd8eee 100644 --- a/python_apps/Makefile +++ b/python_apps/Makefile @@ -1,5 +1,5 @@ -status: - @echo "\n\n\033[1;34m╔═══════════╗" - @echo "║ linux_env ║" - @echo "╚═══════════╝\033[00m" +gitstatus: + @echo "\n\n\033[1;34m╔═════════════╗" + @echo "║ python_apps ║" + @echo "╚═════════════╝\033[00m" @ineach "giti -s && echo -n ' - ' && pwd" diff --git a/repos.json b/repos.json index 3407ab8..7a5bea8 100644 --- a/repos.json +++ b/repos.json @@ -16,6 +16,73 @@ }, + + { + "URL": "dirk/garbage_disposal.git", + "TARGET": "." + }, + + + + { + "URL": "application/cdi.git", + "TARGET": "applications" + }, + { + "URL": "application/mysync.git", + "TARGET": "applications" + }, + { + "URL": "application/nemo.git", + "TARGET": "applications" + }, + { + "URL": "application/pyrip.git", + "TARGET": "applications" + }, + + + + { + "URL": "application/garage_txt_client.git", + "TARGET": "clients" + }, + { + "URL": "application/smarthome_rpi_gui_client.git", + "TARGET": "clients" + }, + + + + { + "URL": "application/patt.git", + "TARGET": "django" + }, + { + "URL": "application/pygal.git", + "TARGET": "django" + }, + { + "URL": "application/pdns.git", + "TARGET": "django" + }, + + + + { + "URL": "embedded_linux/embedded_linux.git", + "TARGET": "embedded_linux" + }, + + + + { + "URL": "dirk/pylibs.git", + "TARGET": "." + }, + + + { "URL": "dirk/ptpython.git", "TARGET": "python_apps" @@ -28,28 +95,47 @@ "URL": "dirk/cutelog.git", "TARGET": "python_apps" }, + { + "URL": "dirk/spyder.git", + "TARGET": "python_apps" + }, + { - "URL": "application/nemo.git", - "TARGET": "applications" - }, - { - "URL": "application/cdi.git", - "TARGET": "applications" - }, - { - "URL": "application/pyrip.git", - "TARGET": "applications" + "URL": "application/garage_rpi_server.git", + "TARGET": "server" }, + + { - "URL": "application/patt.git", - "TARGET": "django" + "URL": "smarthome/smart_brain.git", + "TARGET": "smarthome" }, { - "URL": "application/pygal.git", - "TARGET": "django" + "URL": "smarthome/smart_brain_test.git", + "TARGET": "smarthome" + }, + { + "URL": "smarthome/ambient_info.git", + "TARGET": "smarthome" + }, + { + "URL": "smarthome/leyk.git", + "TARGET": "smarthome" + }, + { + "URL": "smarthome/mpd.git", + "TARGET": "smarthome" + }, + { + "URL": "smarthome/powerplug-energenie.git", + "TARGET": "smarthome" + }, + { + "URL": "smarthome/spotify.git", + "TARGET": "smarthome" }, @@ -101,12 +187,6 @@ { "URL": "unittest/tcp_socket.git", "TARGET": "unittest" - }, - - -{ - "URL": "embedded_linux/embedded_linux.git", - "TARGET": "embedded_linux" } ] } diff --git a/unittest/Makefile b/unittest/Makefile index b1df33b..5e7f30f 100644 --- a/unittest/Makefile +++ b/unittest/Makefile @@ -4,10 +4,13 @@ help: @echo "Help is not yet implemented" @echo "Possible Maketargets: status clean gitsubup gits giti" -status: +gitstatus: @echo "\n\n\033[1;34m╔═══════════╗" @echo "║ unittest ║" @echo "╚═══════════╝\033[00m" + @ineach "giti -s && echo -n ' - ' && pwd" + +status: unittest_status clean: