mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
8 lines
171 B
Makefile
8 lines
171 B
Makefile
all: byterun.o
|
|
$(CC) -m32 -g -o byterun byterun.o ../runtime/runtime.a
|
|
|
|
byterun.o: byterun.c
|
|
$(CC) -g -fstack-protector-all -m32 -c byterun.c
|
|
|
|
clean:
|
|
$(RM) *.a *.o *~
|