head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2000.12.02.05.40.15;	author olawlor;	state dead;
branches;
next	1.1;

1.1
date	2000.09.01.18.02.29;	author milind;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Replaced with charmrun script.
@
text
@BIN=../../bin
CHARMC=$(BIN)/charmc $(OPTS)

all: conv-host

conv-host: conv-host.c
	$(CHARMC) -c -seq -DSILENT conv-host.c
	$(CHARMC) -cp $(BIN) -seq -o conv-host-silent conv-host.o
	$(CHARMC) -c -seq -DNOTIFY conv-host.c
	$(CHARMC) -cp $(BIN) -seq -o conv-host-notify conv-host.o
	cp conv-host-notify conv-host
	cp conv-host $(BIN)/conv-host

clean:
	rm -f *.o conv-host conv-host-notify conv-host-silent
@


1.1
log
@Paving way for splitting conv-host code into multiple files. Instead of just
a single file conv-host.c, now the conv-host belongs to its separate
directory under Common.* directory. The Makefile checks for existence
of this directory
rather than the file, and proceeds to make conv-host in its own directory.
@
text
@@

