feat: basic bump
This commit is contained in:
commit
c86df50063
12 changed files with 535 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
OUT_DIR = .build
|
||||
OBJECTS = src/*.c
|
||||
|
||||
prep-out:
|
||||
@mkdir -p $(OUT_DIR)/bin
|
||||
|
||||
build: prep-out
|
||||
@gcc -o $(OUT_DIR)/bin/out $(OBJECTS)
|
||||
|
||||
run: build
|
||||
@$(OUT_DIR)/bin/out
|
||||
Loading…
Add table
Add a link
Reference in a new issue