diff options
| author | David Phillips <david@sighup.nz> | 2018-06-04 00:09:02 +1200 |
|---|---|---|
| committer | David Phillips <david@sighup.nz> | 2018-06-04 00:09:02 +1200 |
| commit | 5f5316a034d68f8825a16e7b866c8e8b2b6c6bd8 (patch) | |
| tree | ba8d8b59113aa0ec02b92cf14a50e2cef0913684 /lib/Makefile | |
| download | alarmd-5f5316a034d68f8825a16e7b866c8e8b2b6c6bd8.tar.xz | |
Initial dump of prototype
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 0000000..52368e0 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,8 @@ + +CFLAGS += "-I../inc/" + +libalarm.so: libalarm.o + $(CC) -shared -o $@ $< $(LDFLAGS) + +.o.c: + $(CC) -o $@ $< $(LDFLAGS) |
