spectrum_cmbrot

diff Makefile @ 3:8e7f17958dbb

done with the mandelbrot, really
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 17 Feb 2014 18:54:17 +0200
parents 34f2fca9690b
children
line diff
     1.1 --- a/Makefile	Mon Feb 17 11:02:24 2014 +0200
     1.2 +++ b/Makefile	Mon Feb 17 18:54:17 2014 +0200
     1.3 @@ -1,15 +1,14 @@
     1.4 -src = test.c
     1.5 +src = $(wildcard *.c)
     1.6  obj = $(src:.c=.o)
     1.7  
     1.8 -bin = test.tap
     1.9 -wav = $(bin:.tap=.wav)
    1.10 +bin = mbrot.tap
    1.11 +wav = mbrot.wav
    1.12  
    1.13  CC = zcc
    1.14  CFLAGS = +zx -pragma-define=myzorg=28000 -O2
    1.15  LDFLAGS = -create-app
    1.16  
    1.17  $(bin): $(obj)
    1.18 -	rm -f $(bin)
    1.19  	$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(obj)
    1.20  
    1.21  $(wav): $(bin)