
.PHONY: all clean
all : bin2sh-as.exe

bin2sh-as.exe : bin2sh-as.c
	$(CC) $(CFLAGS) $^ -o $@

clean :
	-rm *.o
	-rm *.exe
