7 lines
63 B
Makefile
7 lines
63 B
Makefile
|
all: lpc
|
||
|
|
||
|
lpc: lpc.c
|
||
|
$(CC) -o $@ $^
|
||
|
|
||
|
clean: rm -rf *.[od] lpc
|