# WRAIFFPP v0.24, a tiny audiofile writing utility in C++. # Pieter Suurmond, September 3, 2007. # Makefile to compile (and start up!) C++ program 'write_aiff_files'. # Name of the executable: PRG = write_aiff_files # Compiler (you can change it to 'CC' or something else): CC = g++ # Compiler optimization-level and warnings: CFLAGS = -O2 -Wall # Source files: SRC = $(PRG).cpp\ wraiff.cpp # Math library: LIBS = -lm all: $(PRG) $(PRG): $(SRC) wraiff.hpp Makefile $(CC) $(CFLAGS) $(SRC) -o $(PRG) $(LIBS) ./$(PRG) clean: -rm *.o $(PRG) core *.aiff