mirror of
https://github.com/bronson-g/simCPU.git
synced 2025-12-23 22:17:44 -05:00
9 lines
149 B
Makefile
9 lines
149 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -pedantic -std=c99 -g
|
|
|
|
simcpu: main.c schedule.c mode.c simulation.c
|
|
$(CC) $(CFLAGS) $^ -o $@
|
|
|
|
clean:
|
|
rm -f *.o simcpu
|