# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later

all: lpc

lpc: lpc.c
	$(CC) -o $@ $^

clean: rm -rf *.[od] lpc
