PROG = interpreter

all: $(PROG)

%: %.c
	gcc -o $@ $<
    
clean:
	rm $(PROG)