Archived
1
0
Fork 0
This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
lispy/Makefile

6 lines
142 B
Makefile

run: prompt.c mpc.o
cc -std=c99 -Wall prompt.c mpc.o -ledit -lm -o prompt
mpc:o mpc.c mpc.h
cc -std=c99 -Wall -lm -c mpc.c
clean:
rm *.o