diff options
Diffstat (limited to 'code/tools/lcc')
-rw-r--r-- | code/tools/lcc/makefile | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/code/tools/lcc/makefile b/code/tools/lcc/makefile index 26efed4..178e86c 100644 --- a/code/tools/lcc/makefile +++ b/code/tools/lcc/makefile @@ -231,22 +231,14 @@ testclean: $(RM) $Tyacc$E $Tyacc.s $Tyacc.2 $Tyacc.1 install:: all - install -d /usr/local/lib/lcc - install -d /usr/local/lib/lcc/gcc - install $Bq3lcc$E /usr/local/bin - install $Bq3cpp$E /usr/local/lib/lcc/gcc - install $Bq3rcc$E /usr/local/lib/lcc - install $Bliblcc$A /usr/local/lib/lcc - install $Blibrcc$A /usr/local/lib/lcc + install -s -m 0755 $Bq3lcc$E ../ + install -s -m 0755 $Bq3cpp$E ../ + install -s -m 0755 $Bq3rcc$E ../ uninstall:: - $(RM) /usr/local/lib/lcc/librcc$A - $(RM) /usr/local/lib/lcc/liblcc$A - $(RM) /usr/local/lib/lcc/q3rcc$E - $(RM) /usr/local/lib/lcc/gcc/q3cpp$E - $(RM) /usr/local/bin/lcc$E - $(RMDIR) /usr/local/lib/lcc/gcc - $(RMDIR) /usr/local/lib/lcc + -$(RM) ../q3lcc$E + -$(RM) ../q3cpp$E + -$(RM) ../q3rcc$E clean:: testclean $(RM) $B*$O |