Sfoglia il codice sorgente

Fix object order and stop using a GNU make idiom

master
Laslo Hunhold 6 anni fa
committed by Aaron Marcher
parent
commit
cd884c2f0a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile Vedi File

@@ -60,7 +60,7 @@ config.h:
cp config.def.h $@

slstatus: slstatus.o $(COM:=.o) $(REQ:=.o)
$(CC) -o $@ $(LDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(LDLIBS)
$(CC) -o $@ $(LDFLAGS) $(COM:=.o) $(REQ:=.o) slstatus.o $(LDLIBS)

clean:
rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o)


Caricamento…
Annulla
Salva