# Makefile of hdrec CFLAGS = -O3 -Wall -I/usr/include/directfb CC = gcc TARGETS = hdrec all: $(TARGETS) hdrec: $(CC) $(CFLAGS) -Wall fourier.c oss_api.c hdrec.c -o hdrec -lm -ldirectfb make_raw: $(CC) -O3 -Wall make_raw.c -o make_raw -lm clean: rm $(OBJS) hdrec remake: clean all