lama_byterun/byterun/Makefile

12 lines
233 B
Makefile
Raw Normal View History

2024-01-26 18:45:03 +01:00
# FLAGS=-m32 -g2 -fstack-protector-all
FLAGS=-g2 -fstack-protector-all
2023-09-04 21:44:26 +02:00
2021-09-28 03:02:05 +03:00
all: byterun.o
2023-09-04 21:44:26 +02:00
$(CC) $(FLAGS) -o byterun byterun.o ../runtime/runtime.a
2021-09-28 03:02:05 +03:00
byterun.o: byterun.c
2023-09-04 21:44:26 +02:00
$(CC) $(FLAGS) -g -c byterun.c
2021-09-28 03:02:05 +03:00
clean:
2023-09-04 21:44:26 +02:00
$(RM) *.a *.o *~ byterun