8 lines
82 B
Makefile
8 lines
82 B
Makefile
|
both: p1 p2
|
||
|
|
||
|
p1:
|
||
|
gcc -o main1 part_1.c -lcs50
|
||
|
|
||
|
p2:
|
||
|
gcc -o main2 part_2.c -lcs50
|