lama_byterun/lama-compiler/runtime/Makefile
2023-10-02 13:28:42 +02:00

7 lines
97 B
Makefile

all: runtime.o
runtime.o: runtime.c
gcc -g -m32 -no-pie -c runtime.c
clean:
rm -f *.a *.o *~