From 4eb3349511ca6bc22c90765f4e96e974ef3bb019 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 10 Jan 2014 11:13:03 +0100 Subject: [PATCH] Fix makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4ae3508..ca1b00b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -SRCS := js-state.c js-string.c js-load.c js-lex.c js-parse.c js-ast.c -HDRS := js.h js-parse.h +SRCS := $(wildcard js*.c) +HDRS := $(wildcard js*.h) OBJS := $(SRCS:%.c=build/%.o) CFLAGS = -Wall -g