mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Linker flags after objects
This commit is contained in:
parent
893f204b30
commit
044f8b396d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -17,10 +17,10 @@ TBIN = testsuite
|
|||
all: $(CBIN) $(TBIN)
|
||||
|
||||
$(CBIN): $(COBJS)
|
||||
$(CC) $(LDFLAGS) $(COBJS) -o $@
|
||||
$(CC) $(COBJS) $(LDFLAGS) -o $@
|
||||
|
||||
$(TBIN): $(TOBJS)
|
||||
$(CC) $(LDFLAGS) $(TOBJS) -o $@
|
||||
$(CC) $(TOBJS) $(LDFLAGS) -o $@
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(CFLAGS) $< -o $@
|
||||
|
|
Loading…
Reference in a new issue