mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-19 17:52:25 +03:00
11 lines
247 B
Makefile
11 lines
247 B
Makefile
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
|