aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2024-07-10 10:47:55 -0400
committerGravatar Peter McGoron 2024-07-10 10:47:55 -0400
commitb41e2100c214cc983889017009506a9d339b0341 (patch)
tree7463758c0178984a71159b5a67785c467859ff36 /Makefile
parentfix clean (diff)
import flatrate lisp, rename to Universal Service LISP
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7935619..7440a9d 100644
--- a/Makefile
+++ b/Makefile
@@ -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