forked from Mirror/wren
Gitignore shared libraries and comment makefile a bit.
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,9 +3,11 @@ build/
|
||||
build_xcode/
|
||||
.sass-cache/
|
||||
|
||||
# Built applications.
|
||||
# Built files at the top level.
|
||||
wren
|
||||
wrend
|
||||
libwren.a
|
||||
libwrend.a
|
||||
|
||||
# XCode user-specific stuff.
|
||||
xcuserdata/
|
||||
|
||||
1
Makefile
1
Makefile
@ -10,6 +10,7 @@ SOURCES = $(wildcard src/*.c)
|
||||
HEADERS = $(wildcard src/*.h)
|
||||
OBJECTS = $(SOURCES:.c=.o)
|
||||
|
||||
# Don't include main.c in the shared library.
|
||||
DEBUG_OBJECTS = $(subst build/debug/main.o,,$(addprefix build/debug/, $(notdir $(OBJECTS))))
|
||||
RELEASE_OBJECTS = $(subst build/release/main.o,,$(addprefix build/release/, $(notdir $(OBJECTS))))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user