Skip to content

Commit

Permalink
fix cdirip Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit Pannek committed Nov 18, 2017
1 parent 7df9aa3 commit 065ec76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.o
6 changes: 3 additions & 3 deletions src/cdirip/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
# Compiler
CC=gcc
# Parameters given to the compiler
CFLAGS=-s -O1 -I/usr/include -I/include
CFLAGS=-s -O1 -I/usr/include -I/include -lm
# Output filename (*.exe)
OUTPUT="cdirip"

# Source files
SRCS="audio.c" "cdirip.c" "buffer.c" "cdi.c" "common.c"
SRCS="audio.c" "cdirip.c" "buffer.c" "cdi.c" "common.c"
# Output object files (*.o)
OBJS="audio.o" "cdirip.o" "buffer.o" "cdi.o" "common.o"

Expand All @@ -31,7 +31,7 @@ test: all
./$(OUTPUT)

clean:
rm *.o
rm *.o cdirip

mrproper: clean

0 comments on commit 065ec76

Please sign in to comment.