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 '')
| -rw-r--r-- | Makefile | 10 | 
1 files changed, 8 insertions, 2 deletions
@@ -4,9 +4,15 @@ CONFIGFILE = config.mk  include $(CONFIGFILE)  OBJ =\ -	deadshred.o +	deadshred.o\ +	io.o\ +	fmt.o\ +	text.o\ +	avg.o\ +	rnd.o -HDR = +HDR =\ +	common.h  all: deadshred  $(OBJ): $(HDR)  | 
