dummy-serial/Makefile
2023-11-29 05:44:49 +03:00

15 lines
181 B
Makefile

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)