diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-15 12:48:37 (GMT) |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-15 12:48:37 (GMT) |
commit | d941945543dfd412813ea68dcab70fe57b8b8273 (patch) | |
tree | 6651c7cbdbfcfbef7875cc4ef5cf6368c16bc7ad /Makefile | |
parent | 92f29b97038ba686fe298b55681802b9ef8de73d (diff) | |
download | soup-transcoding-proxy-d941945543dfd412813ea68dcab70fe57b8b8273.zip soup-transcoding-proxy-d941945543dfd412813ea68dcab70fe57b8b8273.tar.gz |
Makefile: fix order of arguments to gcc
On Ubuntu, the order seems to matter. Iddo faced this problem.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,10 +10,10 @@ SRC_OBJS := $(addprefix src/,debug/local-play.o lib.o encode.o) VPATH := debug %.o: %.c %.h - $(CC) -c $(CFLAGS) $(LIBS) $< -o $@ + $(CC) -c $< $(CFLAGS) $(LIBS) -o $@ $(SERVER_NAME): src/main.c $(SRC_OBJS) - $(CC) $(CFLAGS) $(LIBS) $^ -o $@ + $(CC) $^ $(CFLAGS) $(LIBS) -o $@ all: sst-server |