#!/usr/bin/make CC = gcc CFLAGS = -O3 -Wall TARGETS = test all: $(TARGETS) test: des.o des.o: des.c clean: rm -f *.o test remake: clean all