mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
11 lines
233 B
Makefile
11 lines
233 B
Makefile
# FLAGS=-m32 -g2 -fstack-protector-all
|
|
FLAGS=-g2 -fstack-protector-all
|
|
|
|
all: byterun.o
|
|
$(CC) $(FLAGS) -o byterun byterun.o ../runtime/runtime.a
|
|
|
|
byterun.o: byterun.c
|
|
$(CC) $(FLAGS) -g -c byterun.c
|
|
|
|
clean:
|
|
$(RM) *.a *.o *~ byterun
|