commit c8e9e15f6517f6264aadd2f117cad843f77ddfc5 parent 8e80a4f9083636a94aa97c89717a4bf6f4f1ca65 Author: oblique <psyberbits@gmail.com> Date: Sat, 3 Mar 2012 07:45:27 +0200 Makefile updated Diffstat:
M | Makefile | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -1,6 +1,8 @@ PREFIX ?= /usr/local CC = $(CROSS_COMPILE)gcc -OBJS = src/wificurse.o src/iw.o src/dev.o src/error.o src/console.o + +SRCS = $(wildcard src/*.c) +OBJS = $(SRCS:%.c=%.o) .PHONY: clean all install