diff options
author | KyleJHarper <KyleJHarper@gmail.com> | 2015-10-26 06:38:14 (GMT) |
---|---|---|
committer | KyleJHarper <KyleJHarper@gmail.com> | 2015-10-26 06:38:14 (GMT) |
commit | 02be6631beae8afa7140f6eece45333e91d22e4f (patch) | |
tree | 94a72c816f9e2675bcf3425eb4cdd38bc95b627a /examples/Makefile | |
parent | 67b3a24707750d2f09d278cd46439ad6d94b93cb (diff) | |
download | lz4-02be6631beae8afa7140f6eece45333e91d22e4f.zip lz4-02be6631beae8afa7140f6eece45333e91d22e4f.tar.gz lz4-02be6631beae8afa7140f6eece45333e91d22e4f.tar.bz2 |
Took out the basics and placed them into basics.c. Added decompression and a wrapper for the generic call. I will likely break this file up into 2 examples before submission.
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index e00bb58..012c020 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -68,9 +68,12 @@ lineCompress: $(LZ4DIR)/lz4.c blockStreaming_lineByLine.c frameCompress: frameCompress.c $(CC) $(FLAGS) $^ -o $@$(EXT) -L$(LZ4DIR) -llz4 -argPerformanceTesting: $(LZ4DIR)/lz4.c argPerformanceTesting.c +compressFunctions: $(LZ4DIR)/lz4.c compress_functions.c $(CC) $(FLAGS) $^ -o $@$(EXT) -lrt +basics: $(LZ4DIR)/lz4.c basics.c + $(CC) $(FLAGS) $^ -o $@$(EXT) + test : all ./printVersion$(EXT) ./doubleBuffer$(EXT) $(TESTFILE) |