mirror of
https://github.com/mist64/perfect6502.git
synced 2025-04-12 04:36:59 +00:00
14 lines
170 B
Makefile
14 lines
170 B
Makefile
OBJS=perfect6502.o netlist_sim.o
|
|
OBJS+=measure.o
|
|
CFLAGS=-Werror -Wall -O3
|
|
CC=cc
|
|
|
|
all: measure
|
|
|
|
measure: $(OBJS)
|
|
$(CC) -o measure $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS) measure
|
|
|