This commit is contained in:
2016-05-29 18:10:44 +02:00
parent 61aa1de2e0
commit cb7005fff0
381 changed files with 73702 additions and 2 deletions

27
assets/linux/Makefile Executable file
View File

@ -0,0 +1,27 @@
### Sample DamnCute Engine based program Makefile ###
SRC = src/main.cpp \
src/Game.cpp
NAME = sample
CXXFLAGS = -Wall -Wextra -ansi -W -O2 -std=c++0x -I./include
CXX = clang++
OBJS = $(SRC:.cpp=.o)
LINKER = $(CXX)
LIB = ./libs
LDFLAGS = -L$(LIB) -Wl,-rpath $(LIB) $(LIB)/*
all: $(NAME)
$(NAME): $(OBJS)
$(LINKER) $(OBJS) $(LDFLAGS) -o $(NAME)
clean:
$(RM) $(OBJS) *.swp *~ *#
fclean: clean
$(RM) $(NAME)
.PHONY: all clean fclean re

1
assets/linux/launcher.sh Normal file
View File

@ -0,0 +1 @@
LD_LIBRARY_PATH=./libs ./sample