Added makefile.rkt

This commit is contained in:
2026-08-09 00:32:36 +02:00
parent b563d359f0
commit 0f1c1da672
10 changed files with 181 additions and 19 deletions
+8 -1
View File
@@ -15,7 +15,7 @@
(define CFLAGS '(-Wall -O2))
(default-target all)
(phony all clean)
(phony all clean setup test)
(target all
(deps "hello"))
@@ -28,3 +28,10 @@
(rm-f "hello")
(rm-rf "compiled")
(cleanup "scrbl" '("**.html" "**.js" "**.css")))
(target setup
(raco '(setup racket-makefile)))
(target test
(raco '(test -p racket-makefile)))