diff options
author | pommicket <leonardomtenenbaum@gmail.com> | 2016-02-28 13:12:20 -0500 |
---|---|---|
committer | pommicket <leonardomtenenbaum@gmail.com> | 2016-02-28 13:12:20 -0500 |
commit | cdde99ac0fdbcad1133e9482c8a6d283c7842a5b (patch) | |
tree | bb6dc0a6b60ef0fdcc610d48b3dd2c6418603ed8 /AutoImages/src/Makefile | |
parent | 487adb199603d0dd009dd626f569435eb6bcd36a (diff) |
Created AutoArt
Diffstat (limited to 'AutoImages/src/Makefile')
-rw-r--r-- | AutoImages/src/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/AutoImages/src/Makefile b/AutoImages/src/Makefile new file mode 100644 index 0000000..cf7c609 --- /dev/null +++ b/AutoImages/src/Makefile @@ -0,0 +1,7 @@ +CC=gcc +CFLAGS=-lm + +default: AutoImages + +AutoImages: main.c Random.h StringFunctions.h Stack.h Matrix.h + $(CC) $(CFLAGS) -o AutoImages main.c |