summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/autotest.at12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/autotest.at b/tests/autotest.at
index 7734277f..7d09ae37 100644
--- a/tests/autotest.at
+++ b/tests/autotest.at
@@ -1913,13 +1913,13 @@ AT_DATA([Makefile.in],
CFLAGS=@CFLAGS@
testprog@EXEEXT@: testprog.o
+ $(CC) -o testprog@EXEEXT@ testprog.o
+
testprog.o: testprog.c
-.SUFFIXES: .c .o @EXEEXT@
+.SUFFIXES: .c .o
.c.o:
$(CC) -c $<
-.o@EXEEXT@:
- $(CC) -o $@ $^
]])
AT_CHECK_AT_PREP([suite],
@@ -1974,13 +1974,13 @@ AT_DATA([Makefile.in],
CFLAGS=@CFLAGS@
testprog@EXEEXT@: testprog.o
+ $(CC) -o testprog@EXEEXT@ testprog.o
+
testprog.o: testprog.c
-.SUFFIXES: .c .o @EXEEXT@
+.SUFFIXES: .c .o
.c.o:
$(CC) -c $<
-.o@EXEEXT@:
- $(CC) -o $@ $^
]])
AT_CHECK_AT_PREP([suite],