FossilOrigin-Name: 66200db6f53cf736216777c7922d658ef47c00b93d2aa5844babf81d98a91359
This commit is contained in:
nekobit 2023-03-27 04:03:59 +00:00
parent 9518274848
commit 0b1b8f60a4
3 changed files with 1 additions and 36 deletions

View File

@ -1,3 +1,4 @@
Makefile
template
ctemplate
filec

View File

@ -1,34 +0,0 @@
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=debug
endif
export config
PROJECTS := treebird
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
treebird:
@echo "==== Building treebird ($(config)) ===="
@${MAKE} --no-print-directory -C . -f treebird.make
clean:
@${MAKE} --no-print-directory -C . -f treebird.make clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " debug"
@echo " release"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " treebird"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"

View File

@ -76,7 +76,6 @@ for _, v in ipairs(pages) do
table.insert(c_files, v);
end
files(c_files);
--files(pages);
includedirs { "include/" };
defines(definitions);
@ -95,7 +94,6 @@ links{"fcgi"};
if premake.gcc.cc ~= 'clang' then
buildoptions{"-Wno-compound-token-split-by-macro"};
end
-- TODO figure out perl...
configuration { "Debug" };
defines { "DEBUG" };