summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Stensgård <mastensg@mastensg.net>2025-07-09 20:34:44 +0200
committerMartin Stensgård <mastensg@mastensg.net>2025-07-09 20:34:44 +0200
commitcc80525980d004f32aa3342012060b4d421c18f2 (patch)
tree5e6e70f26848397aa3542333be6360e809c598ae /Makefile
parenta8571be97dd6630387c22c53209fa56bc87065b4 (diff)
generic select_booking -> select
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 48ddd20..73f834a 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ LIBS = -lraylib -lm -lpthread -lGLESv2 -lEGL \
-lical -licalss -licalvcal \
$$([ `uname -m` = aarch64 ] && echo '-lvcos -lvchiq_arm -lgbm -ldrm')
-all: check_ical opplysning select_booking update
+all: check_ical opplysning select update
check: all
./check_ical < check_ical_in.ical > check_ical_out.txt
@@ -14,7 +14,7 @@ check: all
clean:
rm -f check_ical check_ical_out.txt
rm -f opplysning
- rm -f select_booking
+ rm -f select
rm -f sqlite.o
rm -f sqlite3
rm -f update
@@ -27,8 +27,8 @@ check_ical: check_ical.c
opplysning: opplysning.c sqlite.o
$(CC) $(CFLAGS) -o $@ opplysning.c sqlite.o $(LIBS)
-select_booking: select_booking.c sqlite.o
- $(CC) $(CFLAGS) -o $@ select_booking.c sqlite.o
+select: select.c sqlite.o
+ $(CC) $(CFLAGS) -o $@ select.c sqlite.o
sqlite.o: sqlite/sqlite3.c
$(CC) $(CFLAGS) -c -o $@ sqlite/sqlite3.c