mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-08-01 20:39:36 +08:00
13 lines
234 B
Makefile
13 lines
234 B
Makefile
|
|
INSTALL = install
|
|
PREFIX = /usr/bin
|
|
|
|
lmotool: src/lmotool.o src/template_lmo.o
|
|
$(CC) $(LDFLAGS) -o src/lmotool src/lmotool.o src/template_lmo.o
|
|
|
|
install:
|
|
$(INSTALL) -m 755 src/lmotool $(PREFIX)
|
|
|
|
clean:
|
|
$(RM) src/lmotool src/*.o
|