lama_byterun/byterun/Makefile
Dmitry Boulytchev fa874b4a4c Byterun
2021-09-28 03:02:05 +03:00

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 *~