Browse Source

Change the name of the executable

OlivierMarty 9 years ago
parent
commit
d45134152d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Makefile

+ 3 - 3
Makefile

@@ -23,10 +23,10 @@ LIBS=$(shell pkg-config --cflags --libs x11)
 
 OBJS = $(SRCS:.c=.o)
 
-default: subtitles
+default: subtitlesPrinter
 
-subtitles: $(OBJS)
-	$(CC) -o subtitles $^ $(CFLAGS) $(LIBS) 
+subtitlesPrinter: $(OBJS)
+	$(CC) -o subtitlesPrinter $^ $(CFLAGS) $(LIBS) 
 
 %.o: %.c
 	$(CC) -c -o $@ $< $(CFLAGS)