mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-04 06:11:55 +03:00
7c81cafa41
git-svn-id: svn://kolibrios.org@7980 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
271 B
Makefile
11 lines
271 B
Makefile
CPPFLAGS=-m32 -fno-exceptions -std=c++03 -Wno-write-strings -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DO_BINARY=0 -D_UNIX_
|
|
LDFLAGS=-m32
|
|
|
|
OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
|
|
|
|
c--: $(OBJS)
|
|
g++ $(LDFLAGS) $^ -o $@
|
|
|
|
%.o: %.cpp
|
|
g++ $(CPPFLAGS) -c $<
|