aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-19 18:03:17 +0200
committerMattias Andrée <maandree@kth.se>2024-09-19 18:03:17 +0200
commit44cff01e5bbe04ff991ede843e96f0c2d83d20c6 (patch)
treef889f60eca251d716489e3b30994c435c00dbfa2 /Makefile
parentm fixes (diff)
downloaddeadshred-44cff01e5bbe04ff991ede843e96f0c2d83d20c6.tar.gz
deadshred-44cff01e5bbe04ff991ede843e96f0c2d83d20c6.tar.bz2
deadshred-44cff01e5bbe04ff991ede843e96f0c2d83d20c6.tar.xz
Split into multiple C files
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1e91bbd..bfe5c26 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,15 @@ CONFIGFILE = config.mk
include $(CONFIGFILE)
OBJ =\
- deadshred.o
-
-HDR =
+ deadshred.o\
+ io.o\
+ fmt.o\
+ text.o\
+ avg.o\
+ rnd.o
+
+HDR =\
+ common.h
all: deadshred
$(OBJ): $(HDR)