diff options
| author | amy <[email protected]> | 2025-11-21 06:45:40 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-21 06:45:40 -0800 |
| commit | 735c7feb19cb29ec24588bf1a4986b52f8cf6ffa (patch) | |
| tree | 3258d820c0ba2f4dfe8f823a7490df9fa6c187d2 /makefile | |
| parent | 01c3959cbb6dbe378c7ec6d5d079397fdc1296b7 (diff) | |
| parent | 8b007445198e9d25b6283ded647586d0e0486220 (diff) | |
Merge pull request #5 from basicallygit/main
Fix sum stuffs
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -28,11 +28,13 @@ else CFLAGS += -fPIC
endif
+.PHONY: all
all: $(TARGET)
release: CFLAGS += -O3
release: all
+.PHONY: install
install::
mkdir $(INSTALL)$(install_version) -p
cp $(TARGET) $(INSTALL)$(install_version)/$(TARGET)
@@ -68,5 +70,8 @@ reg: all $(TARGET): $(OBJS)
$(LINKER) $(OBJS) -o $(TARGET) $(LFLAGS)
+.PHONY: clean
clean:
rm -f $(OBJS)
+
+
|
