now works

This commit is contained in:
dtb 2022-12-08 23:51:40 -05:00
parent 505fb17779
commit 721b556647
1 changed files with 16 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
CC = cc
RM = rm -f
TARGETS = bin/blang
all: $(TARGETS)
clean:
$(RM) $(TARGETS)
bin:
mkdir -p bin
bin/blang: bin src/*.c
$(CC) $(CFLAGS) -o $@ src/*.c
.PHONY: all clean