luapage/Makefile
2021-04-27 21:37:32 +03:00

7 lines
No EOL
74 B
Makefile

CC = gcc
main.out: main.c
$(CC) -o main.out main.c
clean:
@rm main.out