diff options
author | Son Ho | 2023-01-24 00:06:37 +0100 |
---|---|---|
committer | Son HO | 2023-06-04 21:54:38 +0200 |
commit | 8ab6291e717a1ad0fe77dcabca928491134708e3 (patch) | |
tree | e25f728b9fd0758a053ad2f66c8a3e74f0b8c234 /backends/hol4/Holmakefile | |
parent | 6a68fb13036c0efa4028df3be499fc2159681c94 (diff) |
Add a Holmakefile
Diffstat (limited to '')
-rw-r--r-- | backends/hol4/Holmakefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/backends/hol4/Holmakefile b/backends/hol4/Holmakefile new file mode 100644 index 00000000..49cc6da7 --- /dev/null +++ b/backends/hol4/Holmakefile @@ -0,0 +1,9 @@ +INCLUDES = + +all: $(DEFAULT_TARGETS) +.PHONY: all + +README_SOURCES = $(wildcard *Script.sml) $(wildcard *Lib.sml) $(wildcard *Syntax.sml) +DIRS = $(wildcard */) +README.md: $(README_SOURCES) + $(README_SOURCES) |