CC = gcc -Wall
SRC = hello_world mgetopt

all:    $(SRC)

clean:
	rm -f $(SRC)
