I have a makefile, where i am exporting variables which will be received by an executable, but surprisingly the executable is not receiving the exported values.
Please help me.
31 test:
32 @ echo
33 @ echo "Testing Electric Fence."
34 @ echo "After the last test, it should print that the test has PASSED."
35 ./eftest
36 ./tstheap 3072
37 export EF_ERRTRACK_START=3
38 export EF_ERRTRACK_END=5
39 ./time-interval-measurement-test
40 @ echo
41 @ echo "Electric Fence confidence test PASSED."
42 @ echo
time-interval-measurement-test
is an executable (C program) which should receive the exported variables, but it is not getting. Please help me.