diff options
author | Paul Duncan <pabs@pablotron.org> | 2019-02-03 15:48:56 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2019-02-03 15:48:56 -0500 |
commit | 7667c7d7d7473b41c3065cd8fbdb291b45d69fe7 (patch) | |
tree | 9bae14e19cb413cea66f9b7b1d25d70e018fb968 /Makefile | |
parent | a30b8be1ede707f417df6afa5736f6fb75124588 (diff) | |
download | kmeans-7667c7d7d7473b41c3065cd8fbdb291b45d69fe7.tar.bz2 kmeans-7667c7d7d7473b41c3065cd8fbdb291b45d69fe7.zip |
add cflags to link command
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ LIBS=-lm all: $(APP) $(APP): $(OBJS) - $(CC) -o $(APP) $(OBJS) $(LIBS) + $(CC) $(CFLAGS) -o $(APP) $(OBJS) $(LIBS) %.o: %.c $(CC) -c $(CFLAGS) $< |