diff options
| author | 2024-07-10 10:47:55 -0400 | |
|---|---|---|
| committer | 2024-07-10 10:47:55 -0400 | |
| commit | b41e2100c214cc983889017009506a9d339b0341 (patch) | |
| tree | 7463758c0178984a71159b5a67785c467859ff36 /Makefile | |
| parent | fix clean (diff) | |
import flatrate lisp, rename to Universal Service LISP
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,7 +4,7 @@ .SUFFIXES: .c .o .test CC=cc -CFLAGS=-Wall -std=c89 -Werror -pedantic -fPIC -g -Iinclude +CFLAGS=-Wall -std=c89 -Werror -pedantic -fPIC -g -Iinclude -I. tests: string_tests htable_tests @@ -36,6 +36,12 @@ examples/hashtable/uns_hashtable.o: examples/hashtable/uns_hashtable.c \ include/uns.h UNS_HASHTABLE_OBJS=examples/hashtable/uns_hashtable.o +examples/lisp/uns_lisp.o: include/uns.h \ + examples/lisp/uns_lisp.c \ + examples/string/uns_string.h + +UNS_LISP_OBJS=examples/lisp/uns_lisp.o examples/string/uns_string.o + EXAMPLE_OBJS=${UNS_STRING_OBJS} ${UNS_HASHTABLE_OBJS} ## Clean |
