Subversion Repositories Kolibri OS

Rev

Rev 9702 | 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 -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DO_BINARY=0 -D_UNIX_
  2. LDFLAGS=-m32
  3.  
  4. OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
  5.  
  6. c--: $(OBJS)
  7.         g++ $(LDFLAGS) $^ -o $@
  8.  
  9. %.o: %.cpp
  10.         g++ $(CPPFLAGS) -c $<
  11.