Commit 435f1ed7 authored by Martin Pool's avatar Martin Pool

Apparently SGI make doesn't like $< in non-implicit rules.

parent 94f34ca1
...@@ -73,7 +73,7 @@ tls: $(TLS_OBJ) ...@@ -73,7 +73,7 @@ tls: $(TLS_OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS)
getgroups: getgroups.o getgroups: getgroups.o
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getgroups.o $(LIBS)
TRIMSLASH_OBJ = trimslash.o syscall.o TRIMSLASH_OBJ = trimslash.o syscall.o
trimslash: $(TRIMSLASH_OBJ) trimslash: $(TRIMSLASH_OBJ)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment