10 lines
162 B
Makefile
10 lines
162 B
Makefile
|
|
||
|
all: errmsg dmake
|
||
|
|
||
|
errmsg: errmsg.cpp
|
||
|
g++ -Wall -pedantic -o errmsg errmsg.cpp
|
||
|
|
||
|
dmake: dmake.cpp
|
||
|
g++ -Wall -pedantic -o dmake dmake.cpp ../src/filelister.cpp
|
||
|
|