Skip to content

Commit 224fd32

Browse files
Major changes were made
1. Added credit transferring option 2. Added About option 3. Rearranged all the codes in code folder 4. Updated docs and photos 5. Added about.txt 6. Updated format files 7. Updated Sample lab report with new photos and functionalities
1 parent 3212ecc commit 224fd32

File tree

8 files changed

+1128
-0
lines changed

8 files changed

+1128
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Makefile for compiling main program and cleaning binaries
2+
3+
PROG = main
4+
OPTION1 = test
5+
6+
CC = gcc
7+
8+
CFLAGSANDLIBS = `pkg-config --cflags --libs gtk+-3.0` ../database/libsqlite3.a -lm
9+
10+
${PROG}: ${PROG}.c
11+
${CC} ${PROG}.c ${OPTION1}.c -o ${PROG} ${CFLAGSANDLIBS}
12+
13+
# Clean target to remove binaries
14+
clean:
15+
rm ${PROG}
16+

0 commit comments

Comments
 (0)