Update of /cvsroot/csdopenglnet/csdOpenGL/platform
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23889
Added Files:
Makefile
Log Message:
missing in CVS
--- NEW FILE: Makefile ---
MONO=mono
WINDOWS=windows
all:
ifeq ($(MONO),1)
$(MAKE) -C mono
endif
ifeq ($(WINDOWS),1)
$(MAKE) -C windows
endif
install:
ifeq ($(MONO),1)
$(MAKE) -C mono install
endif
ifeq ($(WINDOWS),1)
$(MAKE) -C windows install
endif
uninstall:
ifeq ($(MONO),1)
$(MAKE) -C mono uninstall
endif
ifeq ($(WINDOWS),1)
$(MAKE) -C windows uninstall
endif
clean:
$(MAKE) -C mono clean
$(MAKE) -C windows clean
.IGNORE:
clean
.EXPORT_ALL_VARIABLES:
.PHONY:
clean
|