lama_byterun/byterun/Makefile
2023-09-04 21:44:26 +02:00

10 lines
207 B
Makefile

FLAGS=-no-pie -m32 -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