CC = gcc -Wall
LIST = gas1 gas2

all:    $(LIST)

clean:
	rm -f $(LIST)

        
        