mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-08 21:11:06 -07:00
14 lines
No EOL
191 B
Makefile
14 lines
No EOL
191 B
Makefile
CFLAGS = -Wall
|
|
LDFLAGS = -static
|
|
TARGETS = printf
|
|
|
|
all: build
|
|
build: $(TARGETS)
|
|
|
|
printf: printf.o
|
|
|
|
install: $(TARGETS)
|
|
install -m 0755 $(TARGETS) $(DESTDIR)/bin
|
|
|
|
clean:
|
|
rm -f *.o $(TARGETS)
|