mirror of
https://github.com/Ratstail91/Hearts.git
synced 2025-11-29 02:24:28 +11:00
* I've replaced the Image class with the newer version * Removed the sound system to ensure that it compiles & runs
18 lines
171 B
Makefile
18 lines
171 B
Makefile
#for use on Windows:
|
|
|
|
#MKDIR=mkdir
|
|
#RM=del /y
|
|
|
|
OUTDIR=out
|
|
|
|
all: $(OUTDIR)
|
|
$(MAKE) -C Hearts
|
|
|
|
$(OUTDIR):
|
|
mkdir $(OUTDIR)
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|