Skip to content

Commit aa112da

Browse files
committed
Create shared library
Shared library is now the default, use configure --enable-static to build the static library. Signed-off-by: Claudio Matsuoka <[email protected]>
1 parent 3e1d861 commit aa112da

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ $(MAIN_PATH)/options.o: Makefile
1212

1313
M_OBJS = $(addprefix $(MAIN_PATH)/,$(MAIN_OBJS))
1414

15-
$(MAIN_PATH)/xmp: $(M_OBJS) $(LIB)
15+
$(MAIN_PATH)/xmp: $(M_OBJS)
1616
@CMD='$(LD) -o $@ $(LDFLAGS) $(M_OBJS) -Llib -lxmp -lm -lasound'; \
1717
if [ "$(V)" -gt 0 ]; then echo $$CMD; else echo LD $@ ; fi; \
1818
eval $$CMD
1919

20-
$(M_OBJS): $(LIB)
21-
2220
install-xmp: $(MAIN_PATH)/xmp
2321
@echo Installing xmp in $(DESTDIR)$(BINDIR)
2422
@[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)

0 commit comments

Comments
 (0)