14 lines
181 B
Makefile
14 lines
181 B
Makefile
|
include GNUmakevars
|
||
|
include GNUmakerules
|
||
|
|
||
|
all: gethostbyname
|
||
|
install: $(BINDIR)/gethostbyname
|
||
|
|
||
|
clean:
|
||
|
rm -f *.bak *.o core gethostbyname
|
||
|
|
||
|
distclean: clean
|
||
|
rm -f *.d
|
||
|
|
||
|
-include *.d
|