1
0
forked from Mirror/wren

Gitignore shared libraries and comment makefile a bit.

This commit is contained in:
Bob Nystrom
2015-01-04 10:02:50 -08:00
parent f466763d54
commit 728cb2cbca
2 changed files with 4 additions and 1 deletions

4
.gitignore vendored
View File

@ -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/

View File

@ -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))))