initial commit

This commit is contained in:
root
2024-06-03 16:43:53 +03:00
commit 21e3fd0797
1535 changed files with 60499 additions and 0 deletions

10
junet/Auth/Makefile Normal file
View File

@@ -0,0 +1,10 @@
TARGET: auth_exe
auth_exe: auth.o main.o
gcc auth.o main.o -o auth_exe `mysql_config --cflags --libs` -lm
auth.o: auth.c
gcc -c auth.c -o auth.o
main.o: main.c
gcc -c main.c -o main.o `mysql_config --cflags --libs`
clean:
rm auth.o
rm main.o