moth/packages/printf/src/Makefile

14 lines
207 B
Makefile
Raw Normal View History

CFLAGS = -Wall -Werror
LDFLAGS = -static
TARGETS = printf
all: build
build: $(TARGETS)
printf: printf.o token.o
install: $(TARGETS)
install -m 0755 $(TARGETS) $(DESTDIR)/bin
clean:
rm -f *.o $(TARGETS)