# $VER: DMakefile_for_AltKeyQ 1.0 (16.9.92)
# (c)1992 by Dieter Temme

# compilation with DICE (registered version!)
#COMP= dcc -c -ms -proto
#LINK= dcc
#LLIB=

# compilation with Aztec-C (5.2a)
COMP= cc -ms -pp -so -wcn
LINK= ln
LLIB= +l CLIB:amiga.lib +l -lc
# compilation with Aztec-C for SDB
#COMP= cc -ms -pp -wcn -bs -dDEBUG
#LINK= ln -g

AltKeyQ: RAM:AltKeyQ.o
	$(LINK) -o AltKeyQ %(right) $(LLIB)

RAM:AltKeyQ.o: AltKeyQ.c AltKeyQ.h
	$(COMP) AltKeyQ.c -o %(left)

AltKeyQ.h: AltKeyQ.cd
	CatComp %(right) CFILE %(left)

empty.ct: AltKeyQ.cd
	CatComp %(right) CTFILE %(left)

catalogs/deutsch/AltKeyQ.catalog: AltKeyQ.cd deutsch.ct
	CatComp %(right) CATALOG %(left)

all: AltKeyQ AltKeyQ.h empty.ct catalogs/deutsch/AltKeyQ.catalog

clean:
	delete AltKeyQ.o AltKeyQ.h empty.ct catalogs/deutsch/AltKeyQ.catalog
