14 lines
140 B
Makefile
14 lines
140 B
Makefile
|
all:
|
||
|
gcc program.c -o program
|
||
|
gcc solution.c -o solution
|
||
|
|
||
|
test:
|
||
|
./test.sh
|
||
|
|
||
|
execute:
|
||
|
./execute.sh
|
||
|
|
||
|
clean:
|
||
|
rm -f program
|
||
|
rm -f solution
|