moth/packages/printf/src/Makefile

14 lines
191 B
Makefile
Raw Normal View History

2012-06-06 00:03:40 -06:00
CFLAGS = -Wall
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)