mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-09 05:20:54 -07:00
14 lines
168 B
Makefile
14 lines
168 B
Makefile
DESTDIR ?= /tmp
|
|
|
|
build: cowd cowcli
|
|
|
|
cowcli: cowcli.c
|
|
cc -o $@ -static $<
|
|
strip $@
|
|
upx $@
|
|
|
|
install: build
|
|
cp cowd cowcli $(DESTDIR)/bin/
|
|
|
|
clean:
|
|
rm -f cowd cowcli
|