summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-03-20 15:36:44 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2015-03-20 15:50:56 +0100
commit568f59d5efbd10fb9178a623b873bdddd4c01672 (patch)
treeffb312449ec6c4ad993e078fd73d7e8956dbab49 /Makefile
downloadnlplug-568f59d5efbd10fb9178a623b873bdddd4c01672.tar.bz2
nlplug-568f59d5efbd10fb9178a623b873bdddd4c01672.tar.xz
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b32c051
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+
+nlsockd_SRCS = nlsockd.c
+nlsockd_OBJS = $(nlsockd_SRCS:%.c=%.o)
+
+nlsockd: $(nlsockd_OBJS)
+ echo $^
+ $(CC) -o $@ $(CFLAGS) $($@_CFLAGS) $($@_OBJS) $(LDFLAGS) $($@_LDFLAGS)
+