Merge branch 'apjanke-add-sizes-and-constants-demo-targets' into release/1.18.0
PR #282
This commit is contained in:
commit
87f94e1f0d
@ -247,6 +247,10 @@ small.exe: demos/small.o $(LIBMAIN_S)
|
|||||||
$(CC) demos/small.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) demos/small.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
tv_gen.exe: demos/tv_gen.o $(LIBMAIN_S)
|
tv_gen.exe: demos/tv_gen.o $(LIBMAIN_S)
|
||||||
$(CC) demos/tv_gen.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) demos/tv_gen.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
|
sizes.exe: demos/sizes.o $(LIBMAIN_S)
|
||||||
|
$(CC) demos/sizes.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
|
constants.exe: demos/constants.o $(LIBMAIN_S)
|
||||||
|
$(CC) demos/constants.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
timing.exe: demos/timing.o $(LIBMAIN_S)
|
timing.exe: demos/timing.o $(LIBMAIN_S)
|
||||||
$(CC) demos/timing.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) demos/timing.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
|
|
||||||
@ -255,7 +259,7 @@ test.exe: $(TOBJECTS) $(LIBMAIN_S)
|
|||||||
$(CC) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
@echo NOTICE: start the tests by launching test.exe
|
@echo NOTICE: start the tests by launching test.exe
|
||||||
|
|
||||||
all: $(LIBMAIN_S) $(LIBMAIN_I) $(LIBMAIN_D) hashsum.exe ltcrypt.exe small.exe tv_gen.exe timing.exe test.exe
|
all: $(LIBMAIN_S) $(LIBMAIN_I) $(LIBMAIN_D) hashsum.exe ltcrypt.exe small.exe tv_gen.exe sizes.exe constants.exe timing.exe test.exe
|
||||||
|
|
||||||
test: test.exe
|
test: test.exe
|
||||||
|
|
||||||
|
@ -234,6 +234,10 @@ small.exe: demos/small.c $(LIBMAIN_S)
|
|||||||
cl $(LTC_CFLAGS) demos/small.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
cl $(LTC_CFLAGS) demos/small.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
||||||
tv_gen.exe: demos/tv_gen.c $(LIBMAIN_S)
|
tv_gen.exe: demos/tv_gen.c $(LIBMAIN_S)
|
||||||
cl $(LTC_CFLAGS) demos/tv_gen.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
cl $(LTC_CFLAGS) demos/tv_gen.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
||||||
|
sizes.exe: demos/sizes.c $(LIBMAIN_S)
|
||||||
|
cl $(LTC_CFLAGS) demos/sizes.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
||||||
|
constants.exe: demos/constants.c $(LIBMAIN_S)
|
||||||
|
cl $(LTC_CFLAGS) demos/constants.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
||||||
timing.exe: demos/timing.c $(LIBMAIN_S)
|
timing.exe: demos/timing.c $(LIBMAIN_S)
|
||||||
cl $(LTC_CFLAGS) demos/timing.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
cl $(LTC_CFLAGS) demos/timing.c tests/common.c $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
||||||
|
|
||||||
@ -242,7 +246,7 @@ test.exe: $(LIBMAIN_S) $(TOBJECTS)
|
|||||||
cl $(LTC_CFLAGS) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
cl $(LTC_CFLAGS) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
|
||||||
@echo NOTICE: start the tests by launching test.exe
|
@echo NOTICE: start the tests by launching test.exe
|
||||||
|
|
||||||
all: $(LIBMAIN_S) hashsum.exe ltcrypt.exe small.exe tv_gen.exe timing.exe test.exe
|
all: $(LIBMAIN_S) hashsum.exe ltcrypt.exe small.exe tv_gen.exe sizes.exe constants.exe timing.exe test.exe
|
||||||
|
|
||||||
test: test.exe
|
test: test.exe
|
||||||
|
|
||||||
|
@ -254,6 +254,10 @@ small: demos/small.o $(LIBMAIN_S)
|
|||||||
$(CC) demos/small.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) demos/small.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
tv_gen: demos/tv_gen.o $(LIBMAIN_S)
|
tv_gen: demos/tv_gen.o $(LIBMAIN_S)
|
||||||
$(CC) demos/tv_gen.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) demos/tv_gen.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
|
sizes: demos/sizes.o $(LIBMAIN_S)
|
||||||
|
$(CC) demos/sizes.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
|
constants: demos/constants.o $(LIBMAIN_S)
|
||||||
|
$(CC) demos/constants.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
timing: demos/timing.o $(LIBMAIN_S)
|
timing: demos/timing.o $(LIBMAIN_S)
|
||||||
$(CC) demos/timing.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) demos/timing.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
|
|
||||||
@ -262,15 +266,15 @@ test: $(TOBJECTS) $(LIBMAIN_S)
|
|||||||
$(CC) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
$(CC) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@
|
||||||
@echo "NOTICE: start the tests by: ./test"
|
@echo "NOTICE: start the tests by: ./test"
|
||||||
|
|
||||||
all: $(LIBMAIN_S) hashsum ltcrypt small tv_gen timing test
|
all: $(LIBMAIN_S) hashsum ltcrypt small tv_gen sizes constants timing test
|
||||||
|
|
||||||
#NOTE: this makefile works also on cygwin, thus we need to delete *.exe
|
#NOTE: this makefile works also on cygwin, thus we need to delete *.exe
|
||||||
clean:
|
clean:
|
||||||
-@rm -f $(OBJECTS) $(TOBJECTS)
|
-@rm -f $(OBJECTS) $(TOBJECTS)
|
||||||
-@rm -f $(LIBMAIN_S)
|
-@rm -f $(LIBMAIN_S)
|
||||||
-@rm -f demos/*.o *_tv.txt
|
-@rm -f demos/*.o *_tv.txt
|
||||||
-@rm -f test tv_gen hashsum ltcrypt small timing
|
-@rm -f test constants sizes tv_gen hashsum ltcrypt small timing
|
||||||
-@rm -f test.exe tv_gen.exe hashsum.exe ltcrypt.exe small.exe timing.exe
|
-@rm -f test.exe constants.exe sizes.exe tv_gen.exe hashsum.exe ltcrypt.exe small.exe timing.exe
|
||||||
|
|
||||||
#Install the library + headers
|
#Install the library + headers
|
||||||
install: $(LIBMAIN_S) $(HEADERS)
|
install: $(LIBMAIN_S) $(HEADERS)
|
||||||
|
Loading…
Reference in New Issue
Block a user