UNAME := $(shell uname)
include ../templates/template.$(UNAME)

# ---------------------------------------------------------------------
# RCSID		: 	$Id: Makefile,v 1.2 2000/11/10 22:37:44 cmalek Exp $
# Project	:	dowl
# Filename	:	Makefile
# Desc		:	Makefile for app-defaults
# ---------------------------------------------------------------------

all: XDphys

APP_DEFS = XDphys

XDphys.ad:
.PHONY: XDphys.ad

XDphys: XDphys.ad
	$(CPP) -DCOLOR < XDphys.ad > XDphys

clean:
	$(RM) XDphys XDphys-color

distclean: clean
	$(RM) *~ \#* 

install: $(APP_DEFS)
	@echo -n "Installing app-defaults to $(XAPPDEFS) ... "
	@$(INSTALL) -m 0444 XDphys $(XAPPDEFS)
	@echo "Done."
