mirror of https://github.com/neutrinolabs/xrdp
added -f parameter to ln
This commit is contained in:
parent
76a8cf1689
commit
2a1b60a173
|
@ -27,18 +27,18 @@ CC = gcc
|
|||
|
||||
all: $(LIBSCPOBJ)
|
||||
$(CC) $(LDFLAGS) -o $(LIBSCPFNAME) $(LIBSCPOBJ)
|
||||
ln -s $(LIBSCPFNAME) $(LIBSCPLNAME)
|
||||
ln -f -s $(LIBSCPFNAME) $(LIBSCPLNAME)
|
||||
|
||||
clean:
|
||||
rm -f $(LIBSCPOBJ) $(LIBSCPFNAME) $(LIBSCPLNAME)
|
||||
|
||||
install:
|
||||
install $(LIBSCPFNAME) $(DESTDIR)/$(LIBSCPFNAME)
|
||||
ln -s $(LIBSCPFNAME) $(DESTDIR)/$(LIBSCPLNAME)
|
||||
ln -f -s $(LIBSCPFNAME) $(DESTDIR)/$(LIBSCPLNAME)
|
||||
|
||||
installdeb:
|
||||
install $(LIBSCPFNAME) $(DESTDIRDEB)/usr/lib/xrdp/$(LIBSCPFNAME)
|
||||
ln -s $(LIBSCPFNAME) $(DESTDIRDEB)/usr/lib/xrdp/$(LIBSCPLNAME)
|
||||
ln -f -s $(LIBSCPFNAME) $(DESTDIRDEB)/usr/lib/xrdp/$(LIBSCPLNAME)
|
||||
|
||||
os_calls.o: ../../common/os_calls.c
|
||||
$(CC) $(C_OS_FLAGS) ../../common/os_calls.c
|
||||
|
|
Loading…
Reference in New Issue