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 /AutoVideos/src/GNULinux/Makefile | |
parent | 487adb199603d0dd009dd626f569435eb6bcd36a (diff) |
Created AutoArt
Diffstat (limited to 'AutoVideos/src/GNULinux/Makefile')
-rw-r--r-- | AutoVideos/src/GNULinux/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/AutoVideos/src/GNULinux/Makefile b/AutoVideos/src/GNULinux/Makefile new file mode 100644 index 0000000..8295d49 --- /dev/null +++ b/AutoVideos/src/GNULinux/Makefile @@ -0,0 +1,7 @@ +CC=gcc +CFLAGS=-lm + +default: AutoVideos + +AutoVideos: main.c Random.h StringFunctions.h Stack.h Matrix.h + $(CC) $(CFLAGS) -o AutoVideos main.c |