tclean up makefile - lego_film_processor - software for rotary photographic film processor with Lego Mindstorms RCX
 (HTM) git clone git://src.adamsgaard.dk/lego_film_processor
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 864756f088f6d0405710c0a06ca7af21c21c5722
 (DIR) parent 64fea7365a8ce5b5b5ad76e55d0b7bbb5a5c62b6
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Sat,  1 Oct 2022 08:52:11 +0200
       
       clean up makefile
       
       Diffstat:
         M Makefile                            |       5 ++---
       
       1 file changed, 2 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -1,6 +1,5 @@
        OUT = lego_jobo.rcx
        IRTOWER = /dev/ttyUSB0
       -NQC = nqc
        
        default: $(OUT)
        
       t@@ -8,7 +7,7 @@ upload: $(OUT:.rcx=.nqc)
                sudo nqc -S$(IRTOWER) -d $<
        
        %.rcx: %.nqc
       -        $(NQC) $<
       +        nqc $<
        
        upload_firmware: firm0332.lgo
                sudo nqc -S$(IRTOWER) -firmware $<
       t@@ -24,6 +23,6 @@ test:
                sudo nqc -S$(IRTOWER) -raw 5105
        
        clean:
       -        $(RM) *.rcx
       +        rm -f *.rcx
        
        .PHONY: clean upload upload_firmware test