diff options
author | axtloss <axtlos@getcryst.al> | 2024-06-24 21:50:48 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-06-24 21:50:48 +0200 |
commit | a084dfa02d28a9372a7e406c9b101a43308a4937 (patch) | |
tree | 620d7fe5f55fa76572f5666465997f397b8bbd2a /Makefile | |
parent | 1d4b6499993050876a453a3f96e2428fdfd42610 (diff) | |
download | extlib-a084dfa02d28a9372a7e406c9b101a43308a4937.tar.gz extlib-a084dfa02d28a9372a7e406c9b101a43308a4937.tar.bz2 |
Add new function memvcmp and unit tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -31,6 +31,7 @@ install: extlib extlib.pc install -Dm655 src/extlib.h $(PREFIX)/include/ install -Dm655 extlib.pc $(PREFIX)/share/pkgconfig/ -test: - $(CC) $(TESTCFLAGS) $(TESTLDFLAGS) test.c -o test - ./test +test: FORCE + cd tests && make test + +FORCE: ; # PHONY is a non standard extension |