Fixed git ignore, updated much functionality, updated the procress_monitor to work, updated install.sh, added license, updated Makefile, updated install.sh, updated README.md, all that
This commit is contained in:
8
Makefile
8
Makefile
@@ -16,7 +16,13 @@ all: $(TARGET)
|
||||
$(TARGET): $(OBJS)
|
||||
$(CC) -o $(TARGET) $(OBJS) $(LDFLAGS)
|
||||
|
||||
install: $(TARGET)
|
||||
@echo "Installing $(TARGET) to /usr/local/bin"
|
||||
cp $(TARGET) /usr/local/bin/
|
||||
chmod +x /usr/local/bin/$(TARGET)
|
||||
|
||||
clean:
|
||||
rm -rf $(OBJ_DIR) $(TARGET)
|
||||
|
||||
.PHONY: all clean
|
||||
.PHONY: all clean install
|
||||
|
||||
|
||||
Reference in New Issue
Block a user