mirror of https://github.com/dirtbags/moth.git
10 lines
97 B
Makefile
10 lines
97 B
Makefile
|
LDFLAGS = -static
|
||
|
|
||
|
all: main
|
||
|
|
||
|
main: CFLAGS = -Dpasswd='"$(shell cat key)"'
|
||
|
|
||
|
clean:
|
||
|
rm -rf main
|
||
|
|