diff options
Diffstat (limited to '3rdparty/dict/Makefile')
-rw-r--r-- | 3rdparty/dict/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/3rdparty/dict/Makefile b/3rdparty/dict/Makefile new file mode 100644 index 0000000..a80aa55 --- /dev/null +++ b/3rdparty/dict/Makefile @@ -0,0 +1,5 @@ +all: dict.c dict.h dict-test.c + gcc dict.c dict-test.c -o dict-test -I. + +clean: + rm dict-test |