diff options
| author | yuzu-eva <cafebabe@disroot.org> | 2025-03-25 16:15:25 +0100 |
|---|---|---|
| committer | yuzu-eva <cafebabe@disroot.org> | 2025-03-25 16:15:25 +0100 |
| commit | 7cd7876202746fded86d770fb77aea0f55b814d8 (patch) | |
| tree | 781861dc8c333d2878dec581ddda150e0e34f48e /Makefile | |
| parent | 1764af3aed0e2ba466f813ca28680d4487f61f19 (diff) | |
added db-setup script; fixed makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,12 +9,13 @@ INSTALL_PROGRAM=install INSTALL_DATA=install -m 644 CFLAGS=-Wall -Wextra -O3 -ggdb +LIBS=-lsqlite3 BIN=myal all: $(BIN) myal: $(SRCDIR)/main.c - $(CC) $(CFLAGS) $(SRCDIR)/main.c -o myal + $(CC) $(CFLAGS) $(LIBS) $(SRCDIR)/main.c -o myal install: $(INSTALL_PROGRAM) myal $(PREFIX)$(BINDIR)/myal @@ -22,5 +23,5 @@ install: clean: $(RM) myal -distclean: clean +uninstall: $(RM) /usr/local/bin/myal |
