CC = gcc
CFLAGS = -g -O2 -Wall

all: adder

adder: adder.c

clean:
	rm -f adder *~
