# 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) $<

xargs.exe: $(OBJECTS)
	$(CC) -o $@ $(LDFLAGS) $(OBJECTS) $(LIBS)

xargs$O: ../lib/wait.h
