You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CXXFLAGS= -Os -fomit-frame-pointer
|
|
override CXXFLAGS+= -Wall -fsigned-char
|
|
|
|
default: all
|
|
|
|
all: vvmtool
|
|
|
|
clean:
|
|
-$(RM) vvmtool vvm.o
|
|
|
|
%.o : %.cpp
|
|
$(CXX) -o $@ -c $<
|
|
|
|
vvmtool: vvm.o
|
|
$(CXX) -o vvmtool $^
|
|
|
|
vvm.o: vvm.cpp vvm.h util.h
|