1
0
8086/Makefile

10 lines
104 B
Makefile

CC=gcc
CFLAGS=-g -Wall
.DEFAULT_GOAL := main
%: src/%.c
$(CC) -o $@ $< $(CFLAGS)
clean:
rm main.exe