diff options
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) |