Fixed linking in Makefile
This commit is contained in:
parent
6d46353e9a
commit
9f2256e71c
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -20,10 +20,10 @@ TARGETS = $(KWTARGET) $(SETARGET)
|
||||||
all: $(TARGETS)
|
all: $(TARGETS)
|
||||||
|
|
||||||
$(KWTARGET): $(KWOBJ)
|
$(KWTARGET): $(KWOBJ)
|
||||||
$(LD) -o $@ $(LDFLAGS) $^
|
$(LD) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
$(SETARGET): $(SEOBJ)
|
$(SETARGET): $(SEOBJ)
|
||||||
$(LD) -o $@ $(LDFLAGS) $^
|
$(LD) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
install: all misc/kiwmi.desktop
|
install: all misc/kiwmi.desktop
|
||||||
install -Dm755 $(KWTARGET) "$(DESTDIR)$(BINPREFIX)/$(KWTARGET)"
|
install -Dm755 $(KWTARGET) "$(DESTDIR)$(BINPREFIX)/$(KWTARGET)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue