X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fshared%2Ftests%2FMakefile;fp=src%2Fshared%2Ftests%2FMakefile;h=6374609d788091932afb11e66c489871f6ad067e;hp=ed01595be469a4e279b76a5f1bfb09191ccc440f;hb=789cbc8e52da68eba3517b920ef22e000cf3c9fd;hpb=ef70704f0b31b59bb719b884d6a99cb9e3e2044a diff --git a/src/shared/tests/Makefile b/src/shared/tests/Makefile index ed01595..6374609 100755 --- a/src/shared/tests/Makefile +++ b/src/shared/tests/Makefile @@ -1,10 +1,11 @@ # Makefile for misc tests maketest: + $(CC) -g -o string_test string_test.c ../string_op.c -I../ -I../../ -I../../headers/ -I../headers/ -Wall $(CC) -g -o prime_test prime_test.c ../math_op.c -I../ -I../../ -I../../headers/ -I../headers/ -Wall $(CC) -g -o hash_test hash_test.c ../hash_op.c ../math_op.c -I../ -I../../ -I../../headers/ -I../headers/ -Wall $(CC) -g -o merge_test merge_test.c ../file_op.c ../debug_op.c -I../ -I../../ -I../../headers/ -I../headers/ -Wall $(CC) -DARGV0=\"ip_test\" -g -o ip_test ip_test.c ../validate_op.c ../debug_op.c ../regex_op.c -I../ -I../../ -I../../headers/ -I../headers/ -Wall clean: - -rm regex regex_str *.core + -rm string_test prime_test hash_test merge_test ip_test *.core