lama_byterun/lama-compiler/runtime/Makefile

8 lines
97 B
Makefile
Raw Normal View History

all: runtime.o
runtime.o: runtime.c
2023-10-02 13:28:42 +02:00
gcc -g -m32 -no-pie -c runtime.c
clean:
rm -f *.a *.o *~