[Dicey-cvs] dicey/random Makefile,NONE,1.1
Brought to you by:
christhecat,
w0nderd0g
From: <mad...@us...> - 2004-03-06 23:41:28
|
Update of /cvsroot/dicey/dicey/random In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1840 Added Files: Makefile Log Message: builds the library and the two dicey functions - the dicey functions are written as both a standalone program and as library functions. --- NEW FILE: Makefile --- CC = gcc EXES = techroll combatroll all : libdicerand.a $(EXES) libdicerand.a : techroll.o combatroll.o r250.o ar cr libdicerand.a $? techroll : techroll.c $(CC) -o techroll -DTECH_ROLL_MAIN techroll.c -o techroll -L. -ldicerand combatroll : combatroll.c $(CC) -o combatroll -DCOMBAT_ROLL_MAIN combatroll.c -o combatroll -L. -ldicerand clean : rm -f *~ *.o $(EXES) libdicerand.a |