CC = gcc -Wall
SRC = hello_world mgetopt

all:    $(SRC)

clean disclean:
	rm -f $(SRC)
