mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
add a Makefile in lisc
This commit is contained in:
parent
4796ee984f
commit
1e0d8e2f64
11
lisc/Makefile
Normal file
11
lisc/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
BIN = lisc
|
||||
OBJ = parse.o
|
||||
|
||||
CFLAGS = -Wall -Wextra -std=c99 -g
|
||||
|
||||
$(BIN): $(OBJ)
|
||||
$(CC) $(LDFLAGS) $(OBJ) -o $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f $(BIN) $(OBJ)
|
||||
Loading…
Reference in New Issue
Block a user