diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-06 21:21:55 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-06 21:21:55 -0500 |
| commit | ca915283cb63068f2fb6bb03ec8faf9c97d009d0 (patch) | |
| tree | bc5afadab2c2bb28a9fa005d77a27c567276c449 /example/libfib/Makefile | |
| parent | 5dd9182100f7ded42cab29ee5d556b88d818ee35 (diff) | |
feat: templates for libs
Added GNU Makefile templates for quick building programs, static
libraries, & shared libraries.
Diffstat (limited to 'example/libfib/Makefile')
| -rw-r--r-- | example/libfib/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/example/libfib/Makefile b/example/libfib/Makefile new file mode 100644 index 0000000..c610923 --- /dev/null +++ b/example/libfib/Makefile @@ -0,0 +1,12 @@ +LIB = fib +SHLIB_MAJOR = 1 +SHLIB_MINOR = 1 +CFLAGS = -Wall \ + -Werror \ + -Wextra \ + -Wpedantic \ + -std=c17 +SRCS = fib.c + +include ../tools/mcd.lib.mk + |
