bambi6-service-postit

Simple Note-Taking A/D Service for BambiCTF6 in 2021
git clone https://git.sinitax.com/sinitax/bambi6-service-postit
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (200B)


      1CFLAGS =
      2LDLIBS = -lsqlite3 -lgmp
      3
      4.PHONY: all clean
      5
      6all: postit cleandb gendb
      7
      8clean:
      9	rm -f postit cleandb gendb
     10
     11postit: postit.c util.c crypto.c
     12
     13cleandb: cleandb.c util.c
     14
     15gendb: gendb.c util.c