dummy-serial/Makefile

15 lines
181 B
Makefile
Raw Normal View History

2023-11-29 02:44:49 +00:00
CC = gcc
CFLAGS = -g -Wall
# the build target executable:
TARGET = main
all: $(TARGET)
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c
clean:
$(RM) $(TARGET)