7 lines
79 B
Makefile
7 lines
79 B
Makefile
|
CC=gcc
|
||
|
|
||
|
mptable: mptable.o
|
||
|
$(CC) -o mptable mptable.o
|
||
|
clean:
|
||
|
\rm *.o mptable
|