moth/packages/printf/src/Makefile

14 lines
199 B
Makefile
Raw Normal View History

CFLAGS = -Wall -Werror
LDFLAGS = -static
TARGETS = printf
all: build
build: $(TARGETS)
2011-09-23 16:57:26 -06:00
printf: printf.o
install: $(TARGETS)
install -m 0755 $(TARGETS) $(DESTDIR)/bin
clean:
rm -f *.o $(TARGETS)