Subversion Repositories Kolibri OS

Rev

Rev 9702 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9702 Rev 9776
Line 1... Line 1...
1
CPPFLAGS= -m32 -fpack-struct=2 -fno-exceptions -std=c++03 -Wno-write-strings -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DO_BINARY=0 -D_UNIX_
1
CPPFLAGS= -m32 -fpack-struct=2 -fno-exceptions -std=c++03 -Wno-write-strings -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DO_BINARY=0 -D_UNIX_
2
LDFLAGS=  -m32
2
LDFLAGS=  -m32 -static
Line 3... Line 3...
3
 
3
 
Line 4... Line 4...
4
OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
4
OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
Line 11... Line 11...
11
%.o: %.cpp
11
%.o: %.cpp
12
	$(CC) $(CPPFLAGS) -c $<
12
	$(CC) $(CPPFLAGS) -c $<
Line 13... Line 13...
13
 
13
 
14
clean:
14
clean:
-
 
15
	rm -f $(OBJS) $(TARGET)
-
 
16
 
-
 
17
install: $(TARGET)