summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1f685e6..ba62bae 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CC = gcc
 CFLAGS = -g -std=c89 -Wall
 LDFLAGS = 
 
-SRCS = $(wildcard *.c)
+SRCS = lith.c main.c
 OBJS = $(SRCS:.c=.o)
 
 $(BIN): $(OBJS)