Add test_stack to Makefile.msft
authorIvan Maidanski <ivmai@mail.ru>
Mon, 8 Oct 2012 07:19:55 +0000 (11:19 +0400)
committerIvan Maidanski <ivmai@mail.ru>
Mon, 8 Oct 2012 07:19:55 +0000 (11:19 +0400)
* src/Makefile.msft (test_stack): New compile target.
* src/Makefile.msft (check): Add test_stack to dependencies and
execution lists.

src/Makefile.msft

index 140951a..6786cc8 100644 (file)
@@ -44,12 +44,17 @@ test_malloc: ..\tests\test_malloc.c libatomic_ops_gpl.lib
        cl $(CFLAGS) -I. ..\tests\test_malloc.c /Fo.\test_malloc \
            libatomic_ops_gpl.lib
 
-check:  test_atomic test_atomic_w95 test_malloc
+test_stack: ..\tests\test_stack.c libatomic_ops_gpl.lib
+       cl $(CFLAGS) -I. ..\tests\test_stack.c /Fo.\test_stack \
+           libatomic_ops_gpl.lib
+
+check: test_atomic test_atomic_w95 test_malloc test_stack
        echo The following will print lots of \"Missing ...\" messages.
        test_atomic_w95
        echo The following will print some \"Missing ...\" messages.
        test_atomic
        test_malloc
+       test_stack
 
 clean:
        del *.exe *.obj libatomic_ops_gpl.lib