Commit a247d921104f8009a8c0e9d40a6e11654360c4b5

Authored by Perry Werneck
1 parent 435c304c
Exists in master

Ajustando Makefile

Showing 1 changed file with 5 additions and 2 deletions   Show diff stats
@@ -136,8 +136,6 @@ $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ @@ -136,8 +136,6 @@ $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \
136 @$(MKDIR) `dirname $@` 136 @$(MKDIR) `dirname $@`
137 @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) 137 @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS)
138 138
139 -#---[ Debug Targets ]--------------------------------------------------------------------  
140 -  
141 Debug: \ 139 Debug: \
142 $(BINDBG)/$(LIBNAME) 140 $(BINDBG)/$(LIBNAME)
143 141
@@ -162,4 +160,9 @@ $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ @@ -162,4 +160,9 @@ $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \
162 @$(MKDIR) `dirname $@` 160 @$(MKDIR) `dirname $@`
163 @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) 161 @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS)
164 162
  163 +clean:
  164 +
  165 + @rm -fr $(BINDIR)
  166 + @rm -fr $(OBJDIR)
  167 +
165 168