Annotation of QuadraticMandel/Makefile, revision 1.1
1.1 ! cvsmgr 1: ################################################################################
! 2: ##
! 3: ## 7.07.2005
! 4: ##
! 5: ## $Id: Makefile,v 1.10 2009/11/25 09:23:03 rduran Exp $
! 6: ## $Name: $
! 7: ################################################################################
! 8: CC = gcc
! 9: CFLAGS = -O2 -std=c99 -pedantic -Wall -DDEBUG=$(DEBUG)
! 10: LDFLAGS = -lpng
! 11: DEBUG = 0
! 12: EXE = fractal fractalalpha fractal_00 fractal_l ReadPNGHdr \
! 13: fractal_esp1 fractal_esp2 fractal_esp3 \
! 14: fractal_esp5 fractal_esp6 fractal_esp7
! 15:
! 16: %: %.o
! 17: $(CC) -o $@ $^ $(LDFLAGS)
! 18: %.o: %.c
! 19:
! 20: $(CC) -c -o $@ $*.c $(CFLAGS)
! 21:
! 22: all: $(EXE)
! 23:
! 24: fractal: fractal.o genfractal.o mypng.o
! 25: fractal_l: fractal_l.o genfractal.o mypng.o
! 26: fractalalpha: fractalalpha.o genfractal.o mypng.o
! 27: fractal_00: fractal_00.o genfractal.o mypng.o
! 28:
! 29: fractal_esp1: fractal_esp1.o genfractal.o mypng.o
! 30: fractal_esp2: fractal_esp2.o genfractal.o mypng.o
! 31: fractal_esp3: fractal_esp3.o genfractal.o mypng.o
! 32: fractal_esp5: fractal_esp5.o genfractal.o mypng.o
! 33: fractal_esp6: fractal_esp6.o genfractal.o mypng.o
! 34: fractal_esp7: fractal_esp7.o genfractal.o mypng.o
! 35: ReadPNGHdr: ReadPNGHdr.o mypng.o
! 36:
! 37: fractal.o: fractal.c genfractal.h Makefile
! 38: fractal_00.o: fractal_00.c genfractal.h Makefile
! 39: fractal_l.o: fractal_l.c genfractal.h Makefile
! 40: fractalalpha.o: fractalalpha.c genfractal.h Makefile
! 41: ReadPNGHdr.o: ReadPNGHdr.c mypng.h Makefile
! 42:
! 43: mypng.o: mypng.c mypng.h Makefile
! 44: genfractal.o: genfractal.c genfractal.h mypng.h mathutil.h Makefile
! 45:
! 46: clean:
! 47: rm -f *.o $(EXE)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>