Revision: | 1.1 |
Committed: | Wed May 7 09:20:48 2025 UTC (2 months, 1 week ago) by root |
Branch: | MAIN |
CVS Tags: | HEAD |
Log Message: | *** empty log message *** |
# | Content |
---|---|
1 | |
2 | all: enametoolong.so |
3 | echo to test: |
4 | echo LD_PRELOAD=./enametoolong.so ENAMETOOLONG_SHORTENER=/root/enametoolong/shortener perl -e "''" |
5 | |
6 | install: all |
7 | rm -f enametoolong-prod.so |
8 | cp enametoolong.so enametoolong-prod.so |
9 | cp shortener shortener-prod |
10 | |
11 | clean: |
12 | rm -f enametoolong.so wrap.C |
13 | |
14 | enametoolong.so: enametoolong.C wrap.C |
15 | g++ -std=gnu++17 -fno-exceptions -O3 -fPIC -shared -o enametoolong.so enametoolong.C |
16 | |
17 | wrap.C: genwrap |
18 | ./genwrap >wrap.C |