Reupload
This commit is contained in:
36
Makefile
Normal file
36
Makefile
Normal file
@ -0,0 +1,36 @@
|
||||
### General DamnCute Engine Makefile ###
|
||||
|
||||
ifeq ($(OS),Windows_NT)
|
||||
error:
|
||||
$(info Windows is not yet supported)
|
||||
else
|
||||
|
||||
UNAME := $(shell uname -s)
|
||||
|
||||
ifeq ($(UNAME),Linux)
|
||||
|
||||
project:
|
||||
make -f ./Makefile_linux
|
||||
build-only:
|
||||
make -f ./Makefile_linux build-only
|
||||
clean:
|
||||
make -f ./Makefile_linux clean
|
||||
fclean:
|
||||
make -f ./Makefile_linux fclean
|
||||
|
||||
endif
|
||||
|
||||
ifeq ($(UNAME),Darwin)
|
||||
|
||||
project:
|
||||
make -f ./Makefile_mac
|
||||
build-only:
|
||||
make -f ./Makefile_mac build-only
|
||||
clean:
|
||||
make -f ./Makefile_mac clean
|
||||
fclean:
|
||||
make -f ./Makefile_mac fclean
|
||||
|
||||
endif
|
||||
|
||||
endif
|
Reference in New Issue
Block a user