mirror of https://github.com/dirtbags/moth.git
10 lines
126 B
Makefile
10 lines
126 B
Makefile
|
LDFLAGS = -static
|
||
|
|
||
|
all: frob main
|
||
|
|
||
|
main: CFLAGS = -Dfrobbed='"$(shell tr -d '\n' < key | ./frob)"'
|
||
|
|
||
|
clean:
|
||
|
rm -rf main frob
|
||
|
|