diff options
author | justanothercatgirl <sotov@twistea.su> | 2025-04-01 01:44:47 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2025-04-01 01:44:47 +0300 |
commit | a5f1cb5ce34f31b9c46de94e55b5f85d571b792f (patch) | |
tree | 105116fd5b812124812c6658727b96814fa41b05 /ste/example/Makefile | |
parent | 08b786a6770c172f433e28b0eb1e893f4fbae40a (diff) |
Added stringbuilder and STE
Diffstat (limited to 'ste/example/Makefile')
-rw-r--r-- | ste/example/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ste/example/Makefile b/ste/example/Makefile new file mode 100644 index 0000000..f8a6ef4 --- /dev/null +++ b/ste/example/Makefile @@ -0,0 +1,14 @@ + +.SUFFIXES: + +all: main + +ste: ../ste.c + $(CC) -o $@ $< + +%.c: %.c.ste ste + ./ste -m OUTPUT $< + +main: main.c tmpl.c + $(CC) -o $@ $< + |