Browse Source

Accept user-defined LDFLAGS in Makefile

Diff by Ypnose
master
sin 9 years ago
parent
commit
2bed0dd175
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -15,7 +15,7 @@ BIN = noice
all: $(BIN)

$(BIN): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LDLIBS)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(LDLIBS)

noice.o: util.h config.h
strlcat.o: util.h


Loading…
Cancel
Save