8 lines
146 B
Makefile
8 lines
146 B
Makefile
|
both: p1 p2
|
||
|
|
||
|
p1:
|
||
|
gcc -o main1 part_1.c -lcs50 -I../include ../include/parse.c
|
||
|
|
||
|
p2:
|
||
|
gcc -o main2 part_2.c -lcs50 -I../include ../include/parse.c
|