Skip to content
Snippets Groups Projects
Commit 1ea0957f authored by Dong Cao's avatar Dong Cao
Browse files

First attempt at creating a makefile

parent 0741dfbb
Branches
No related merge requests found
CC = gcc
CFLAGS =
# the build target executable:
TARGET = arithmetic
all: $(TARGET)
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) $(TARGET).c -o $(TARGET).ce
clean:
$(RM) $(TARGET).ce
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment