# Makefile for GNU xargs.
# Do not use this makefile directly, but only from `../Makefile'.
# Copyright (C) 1990 Free Software Foundation, Inc.

OBJECTS = xargs.o

all: xargs.exe
.PHONY: all

.c.o:
	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I../lib $<

TAGS: $(SOURCES)
	etags $(SOURCES)

xargs.exe: $(OBJECTS) ../lib/libfind.a
	$(CC) -o $@ $(LDFLAGS) $(OBJECTS) ../lib/libfind.a $(LIBS)

xargs.o: ../lib/wait.h
