diff options
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 |