Minor fixes
This commit is contained in:
@@ -31,7 +31,7 @@ $(OUTPUT): $(OBJECTS)
|
|||||||
$(info Generating output file)
|
$(info Generating output file)
|
||||||
$(CO) $(OUTPUT) $(OBJECTS) $(LDFLAGS) $(LIBS)
|
$(CO) $(OUTPUT) $(OBJECTS) $(LDFLAGS) $(LIBS)
|
||||||
install: all
|
install: all
|
||||||
$(info Installing Testing space to /usr/bin/)
|
$(info Installing MakeGen to /usr/bin/)
|
||||||
@cp $(OUTPUT) /usr/bin/makegen
|
@cp $(OUTPUT) /usr/bin/makegen
|
||||||
$(OBJPATH)/ConfigCLI.o : src/ConfigCLI.cpp src/Common.h src/ConfigCLI.h src/ConfigFile.h
|
$(OBJPATH)/ConfigCLI.o : src/ConfigCLI.cpp src/Common.h src/ConfigCLI.h src/ConfigFile.h
|
||||||
$(info -[14%]- $<)
|
$(info -[14%]- $<)
|
||||||
|
|||||||
+2
-2
@@ -8,9 +8,9 @@ _DEBUG
|
|||||||
#srcdir
|
#srcdir
|
||||||
src/
|
src/
|
||||||
#outputdir
|
#outputdir
|
||||||
bin
|
bin/
|
||||||
#projectname
|
#projectname
|
||||||
Testing space
|
MakeGen
|
||||||
#outputname
|
#outputname
|
||||||
makegen
|
makegen
|
||||||
#executable
|
#executable
|
||||||
|
|||||||
+10
-11
@@ -16,17 +16,16 @@
|
|||||||
#define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))
|
#define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))
|
||||||
|
|
||||||
const static unsigned int FLAG_HELP = BIT(0);
|
const static unsigned int FLAG_HELP = BIT(0);
|
||||||
// const static unsigned int FLAG_GEN = BIT(1);
|
const static unsigned int FLAG_VERSION = BIT(1);
|
||||||
const static unsigned int FLAG_VERSION = BIT(2);
|
const static unsigned int FLAG_CLEAN = BIT(2);
|
||||||
const static unsigned int FLAG_CLEAN = BIT(3);
|
const static unsigned int FLAG_MAKE = BIT(3);
|
||||||
const static unsigned int FLAG_MAKE = BIT(4);
|
const static unsigned int FLAG_RUN = BIT(4);
|
||||||
const static unsigned int FLAG_RUN = BIT(5);
|
const static unsigned int FLAG_INSTALL = BIT(5);
|
||||||
const static unsigned int FLAG_INSTALL = BIT(6);
|
const static unsigned int FLAG_REBUILD = BIT(6);
|
||||||
const static unsigned int FLAG_REBUILD = BIT(7);
|
const static unsigned int FLAG_SINGLE_THREAD = BIT(7);
|
||||||
const static unsigned int FLAG_SINGLE_THREAD = BIT(8);
|
const static unsigned int FLAG_DEPENDENCY = BIT(8);
|
||||||
const static unsigned int FLAG_DEPENDENCY = BIT(9);
|
const static unsigned int FLAG_SIMPLE = BIT(9);
|
||||||
const static unsigned int FLAG_SIMPLE = BIT(10);
|
const static unsigned int FLAG_CONFIG = BIT(10);
|
||||||
const static unsigned int FLAG_CONFIG = BIT(11);
|
|
||||||
|
|
||||||
|
|
||||||
#define LOG_INFO(...) Log(__VA_ARGS__); std::cout << std::endl
|
#define LOG_INFO(...) Log(__VA_ARGS__); std::cout << std::endl
|
||||||
|
|||||||
Reference in New Issue
Block a user