Subversion Repositories Kolibri OS

Rev

Rev 9695 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. CPPFLAGS=-m32 -fno-exceptions -std=c++03 -Wno-write-strings -D_WIN32_
  2. LDFLAGS=-m32
  3.  
  4. OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
  5.  
  6. c--.exe: $(OBJS)
  7.         g++ $^ -o $@
  8.  
  9. %.o: %.cpp
  10.         g++ $(CPPFLAGS) -c $<
  11.