URI: 
       Change makefile order to work by default. - 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 12fcedb4833ac51966b5fe599e569b39619dc0ac
   DIR parent 950d4e8fa633eea13b82acf9f665fb4bdb4298c1
  HTML Author: Christoph Lohmann <20h@r-36.net>
       Date:   Fri,  9 Aug 2024 11:52:23 +0200
       
       Change makefile order to work by default.
       
       Diffstat:
         M mqtt/tamagotchi/Makefile            |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/mqtt/tamagotchi/Makefile b/mqtt/tamagotchi/Makefile
       @@ -1,9 +1,10 @@
        CC=cc
        
       -clean:
       -        rm -f tamagotchi
        tamagotchi:
                cc $@.c -lpthread -o $@
        
       +clean:
       +        rm -f tamagotchi
       +
        .PHONY: tamagotchi clean