Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
Qt Creator 4.4.0
-
None
Description
jom 1.1.2
-------------------------------------
>dir/b
ab.txt
cd.txt
makefile.mak
-------------------------------------
>type makefile.mak
.SUFFIXES: .txt
file_list = \
ab.dat \
cd.dat
all: $(file_list)
.txt.dat::
type $< > test.dat 2>nul
-------------------------------------
>nmake -nologo -f makefile.mak
type ab.txt cd.txt > test.dat 2>nul
-------------------------------------
>jom -lf makefile.mak
type ab.txt > test.dat 2>nul
type cd.txt > test.dat 2>nul