Bug fix: check if vm exists
[avr-sim.git] / Makefile
blobd920c809601e3cd78cb239e5f74794e49c1f88db
1 CXXFLAGS = -O2 -g -Wall -fmessage-length=0 -I/usr/include/libxml2
3 OBJS = avr-sim.o Device.o DeviceSettings.o Memory.o Flash.o Eeprom.o \
4 Format.o Exception.o Core.o Decoder.o Instructions.o \
5 InstructionsTrace.o Registers.o MMU.o
6 LIBS = -lxml2
8 TARGET = avr-sim
10 $(TARGET): $(OBJS)
11 $(CXX) -o $(TARGET) $(OBJS) $(LIBS)
13 all: $(TARGET)
15 clean:
16 rm -f $(OBJS) $(TARGET)