AoC/2023/days/05/Makefile

14 lines
120 B
Makefile
Raw Permalink Normal View History

2024-06-02 17:38:51 +02:00
##
# Project Title
#
# @file
# @version 0.1
SOURCE=part1
run:
ocamlopt $(SOURCE).ml -o $(SOURCE)
./$(SOURCE)
# end