Started implementing the 8086 simulation
This commit is contained in:
8
8086_sim/Makefile
Normal file
8
8086_sim/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
CC=clang++
|
||||
CFLAGS=-g -O0 -Wall -Wextra
|
||||
LIBS=-Wl,-rpath,./lib -L./lib -lsim86
|
||||
SRC=*.cpp
|
||||
OUT=sim86
|
||||
|
||||
all:
|
||||
$(CC) $(CFLAGS) $(LIBS) $(SRC) -o $(OUT)
|
Reference in New Issue
Block a user