Minor cleanup.
This commit is contained in:
parent
542cb9a746
commit
df14bb6ae5
|
@ -92,8 +92,8 @@ cleanall:
|
||||||
|
|
||||||
help:
|
help:
|
||||||
@echo "BUILD = Build mode. One of:"
|
@echo "BUILD = Build mode. One of:"
|
||||||
@echo " debug (default)"
|
@echo " debug (no optimizations)"
|
||||||
@echo " release (optimizations)"
|
@echo " release (optimizations, the default)"
|
||||||
@echo "APPS = Applications to build. Defaults to all."
|
@echo "APPS = Applications to build. Defaults to all."
|
||||||
@echo "VERBOSE = Full output from commands if set."
|
@echo "VERBOSE = Full output from commands if set."
|
||||||
|
|
||||||
|
@ -107,7 +107,6 @@ $(EXES):
|
||||||
$(BUILD_DIR)/%.a:
|
$(BUILD_DIR)/%.a:
|
||||||
@mkdir -p $(@D)
|
@mkdir -p $(@D)
|
||||||
$(HUSH_GENERATE) $(AR) $(ARFLAGS) $@ $^
|
$(HUSH_GENERATE) $(AR) $(ARFLAGS) $@ $^
|
||||||
# $(HUSH_GENERATE) $(AR) $(ARFLAGS) $@ $^ 2> /dev/null
|
|
||||||
|
|
||||||
$(BUILD_DIR)/%.o: $(SRC_ROOT)/%.c
|
$(BUILD_DIR)/%.o: $(SRC_ROOT)/%.c
|
||||||
@mkdir -p $(@D)
|
@mkdir -p $(@D)
|
||||||
|
|
|
@ -29,7 +29,7 @@ Original C 0.223 0.19
|
||||||
|
|
||||||
|
|
||||||
=== REQUIREMENTS ===
|
=== REQUIREMENTS ===
|
||||||
An SSE2 capable CPU (i.e. AMD Athlon 64, Intel Pentium 4 or newer.
|
An SSE2 capable CPU (i.e. AMD Athlon 64, Intel Pentium 4 or newer).
|
||||||
|
|
||||||
It's been tested with Visual Studio 2012 and gcc 4.6.3 but should compile
|
It's been tested with Visual Studio 2012 and gcc 4.6.3 but should compile
|
||||||
and run on other compilers as well.
|
and run on other compilers as well.
|
||||||
|
|
Loading…
Reference in New Issue