diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2025-12-19 23:35:34 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2025-12-19 23:35:34 +0100 |
| commit | eac0c0f41c805b2082a5701cee4f89a434244da4 (patch) | |
| tree | 3b5df3a98a72fb935dbc28ae4e8a0a368c37a9ee | |
| parent | 1c11d915a68e60bd191d43e348d56b9eab71b107 (diff) | |
fixed casing issue with makefile
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,20 +14,20 @@ INSTALL_TARGET = crbc INSTALL_DEBUG_TARGET = $(INSTALL_TARGET)_debug # Compile all -All: +all: $(CC) $(CFLAGS) $(SRC) -o $(TARGET) $(CC) $(DEBUG_CFLAGS) $(SRC) -o $(DEBUG_TARGET) # Compile release (same as 'make') -Release: +release: $(CC) $(CFLAGS) $(SRC) -o $(TARGET) # Compile debug -Debug: +rebug: $(CC) $(DEBUG_CFLAGS) $(SRC) -o $(DEBUG_TARGET) # Clean all (release + debug) -cleanall: +clean cleanall: rm -f $(TARGET) rm -f $(DEBUG_TARGET) |