12 lines
115 B
Makefile
12 lines
115 B
Makefile
|
.PHONY := all build run
|
||
|
|
||
|
all: build run
|
||
|
|
||
|
build:
|
||
|
fpc -odiag diag.pas
|
||
|
fpc -odiag2 diag2.pas
|
||
|
|
||
|
run:
|
||
|
./diag
|
||
|
./diag2
|