fix math linking issue
This commit is contained in:
parent
f2ed7720fe
commit
c4cfb2582d
2 changed files with 4 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -37,11 +37,11 @@ options:
|
|||
|
||||
%.so: %.o ${MID}
|
||||
@echo LD $< ${MID} -o $@
|
||||
@${CC} ${ALL_LDFLAGS} ${SHARED_LDFLAGS} $< ${MID} -o $@
|
||||
@${CC} ${SHARED_LDFLAGS} $< ${MID} -o $@ ${ALL_LDFLAGS}
|
||||
|
||||
%: %.o ${MID}
|
||||
@echo LD $< ${MID} -o $@
|
||||
@${CC} ${ALL_LDFLAGS} $< ${MID} -o $@
|
||||
@${CC} $< ${MID} -o $@ ${ALL_LDFLAGS}
|
||||
|
||||
%.o: %.c ${HEADERS}
|
||||
@echo CC $< -o $@
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
# crap
|
||||
|
||||
connor's rancid audio plugins. LADSPA.
|
||||
alternatively, crazy-revealing androgynous panties
|
||||
|
||||
alternatively, crazy-revealing androgynous panties.
|
||||
|
||||
### crap_eq
|
||||
|
||||
|
|
Loading…
Reference in a new issue