# rcsid $Id: xmakefile,v 1.1 1995/09/24 19:03:26 smp Exp smp $

# makefile for x10client.o

include ../rc.mk
PACKAGE = x10X11
DIR = x10X11

FILES = Imakefile \
	Makefile.in \
	xmakefile \
	Xx10mini.ad

## Xx10maxi.ad

EXECS = \
	xx10mini

##	xx10maxi

H_SRC = 

C_SRC = \
	xx10mini.cc

##	xx10maxi.cc

C_OBJ = \
	xx10mini.o

##	xx10maxi.o


VPATH = $(UTIL_DIR)/misc:$(SRVR_DIR)


.PHONY : it
it:
	@echo >/dev/null

.PHONY : clean
clean :
	rm -f $(C_OBJ)
	rm -f $(EXECS)

.PHONY : ci
ci : Makefile $(H_SRC) $(C_SRC)
	ci -l Makefile $(H_SRC) $(C_SRC)

.PHONY : list
list :
	@$(foreach f,$(FILES),echo $(PPATH)$(PACKAGE)/$(f);)
ifneq	"$(H_SRC)" ""
	@$(foreach f,$(notdir $(H_SRC)),echo $(PPATH)$(PACKAGE)/$(f);)
endif
ifneq	"$(C_SRC)" ""
	@$(foreach f,$(notdir $(C_SRC)),echo $(PPATH)$(PACKAGE)/$(f);)
endif
##ifneq	"$(EXECS)" ""
##	@$(foreach f,$(notdir $(EXECS)),echo $(PPATH)$(PACKAGE)/$(f);)
##endif
