diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-19 18:03:17 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-19 18:03:17 +0200 |
commit | 44cff01e5bbe04ff991ede843e96f0c2d83d20c6 (patch) | |
tree | f889f60eca251d716489e3b30994c435c00dbfa2 /Makefile | |
parent | m fixes (diff) | |
download | deadshred-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-- | Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -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) |