URI: 
       Added a Makefile for some reason - brcon2024-hackathons - Bitreichcon 2024 Hackathons
  HTML git clone git://bitreich.org/brcon2024-hackathons git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/brcon2024-hackathons
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR Submodules
       ---
   DIR commit 950d4e8fa633eea13b82acf9f665fb4bdb4298c1
   DIR parent 335b1e03150eb03337a5268bd899689277c51923
  HTML Author: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
       Date:   Thu,  8 Aug 2024 19:41:18 -0300
       
       Added a Makefile for some reason
       
       Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
       Signed-off-by: Christoph Lohmann <20h@r-36.net>
       
       Diffstat:
         A mqtt/tamagotchi/Makefile            |       9 +++++++++
       
       1 file changed, 9 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/mqtt/tamagotchi/Makefile b/mqtt/tamagotchi/Makefile
       @@ -0,0 +1,9 @@
       +CC=cc
       +
       +clean:
       +        rm -f tamagotchi
       +tamagotchi:
       +        cc $@.c -lpthread -o $@
       +
       +.PHONY: tamagotchi clean
       +