12 lines
65 B
Makefile
12 lines
65 B
Makefile
|
|
COMP = ghc
|
|
|
|
default:
|
|
$(COMP) test.hs logic.hs
|
|
|
|
run:
|
|
./test
|
|
|
|
|
|
|