Skip to content

Instantly share code, notes, and snippets.

@TorNATO-PRO
Created September 29, 2021 18:25
Show Gist options
  • Save TorNATO-PRO/fe70e4506ece98e610ffef40464de101 to your computer and use it in GitHub Desktop.
Save TorNATO-PRO/fe70e4506ece98e610ffef40464de101 to your computer and use it in GitHub Desktop.
# the compiler: gcc for C program, define as g++ for C++
CC = gcc
# compiler flags:
# -g adds debugging information to the executable file
# -Wall turns on most, but not all, compiler warnings
CFLAGS = -g -Wall
# the build target executable:
TARGET = myprog
all: $(TARGET)
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c
clean:
$(RM) $(TARGET)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment