FILES = $(shell ls)
CSRCS =$(filter %.c ,$(FILES))
BIN=hex-to-mem

all: $(CSRCS)
	gcc $(CSRCS) -o $(BIN)

install:

