Skip to content
View D3r3k23's full-sized avatar
  • Marvell Technology
  • Idaho

Highlights

  • Pro
Block or Report

Block or report D3r3k23

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
D3r3k23/README.md

Pinned

  1. Github Actions Updater Github Actions Updater
    1
    version: 2
    2
    updates:
    3
      - package-ecosystem: "github-actions"
    4
        directory: "/"
    5
        schedule:
  2. Makefile for separate source and bui... Makefile for separate source and build directories. Compiles all .c files in src directory, places .o files in build directory, automatically tracks dependencies.
    1
    SRC_DIR   := src
    2
    BUILD_DIR := build
    3
    EXE 	  := $(BUILD_DIR)/a.out
    4
    GCC_FLAGS := -g -MMD
    5