Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
bison /
examples /
c /
glr /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
499
B
-rw-r--r--
README.md
758
B
-rw-r--r--
c++-types.y
7.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
# This Makefile is designed to be simple and readable. It does not # aim at portability. It requires GNU Make. BASE = c++-types BISON = bison all: $(BASE) %.c %.h %.xml %.gv: %.y $(BISON) $(BISONFLAGS) --header --graph -o $*.c $< $(BASE): $(BASE).o $(CC) $(CFLAGS) -o $@ $^ run: $(BASE) @echo "Type C++ declarations or expressions. Quit with ctrl-d." ./$< CLEANFILES = \ $(BASE) *.o $(BASE).[ch] $(BASE).output $(BASE).xml $(BASE).html $(BASE).gv clean: rm -f $(CLEANFILES)
Close