mirror of
https://github.com/tcarmelveilleux/dcc6502.git
synced 2024-12-26 22:30:54 +00:00
10 lines
115 B
Makefile
10 lines
115 B
Makefile
CC=gcc
|
|
CFLAGS=-O
|
|
|
|
dcc6502: dcc6502.c
|
|
$(CC) -o $@ $^ $(CFLAGS)
|
|
|
|
clean:
|
|
rm -f *.o dcc6502 dcc6502.exe
|
|
|
|
all: dcc6502 |