summaryrefslogtreecommitdiff
path: root/Makefile
blob: 877666cefa54921e7d7bffd58f3cad587042d387 (plain)
1
2
3
4
5
6
7
8
9
BUILD_DIR = ./build

SRC_DIRS := ./src/

SRCS := $(shell find $(SRC_DIRS) -name '*.c')

all:
	@gcc -g $(SRCS) -o ./m -Iinclude/
	@echo [CC] Compiled "m".