mirror of
https://github.com/HackHerz/pusher
synced 2025-12-06 02:10:19 +00:00
Fixed makefile
This commit is contained in:
parent
e242b208db
commit
feda23dacf
1 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# compiler
|
||||
CXX = @CXX@
|
||||
CFLAGS = -Wall -Werror
|
||||
CFLAGS += -std=c++11
|
||||
#CFLAGS = -Wall -Werror
|
||||
#CFLAGS += -std=c++11
|
||||
|
||||
|
||||
# librarys
|
||||
|
|
@ -20,10 +20,10 @@ $(TARGET):
|
|||
$(CXX) -o $(TARGET) $(CFLAGS) $(SOURCES) $(LDLIBS)
|
||||
|
||||
install: $(TARGET)
|
||||
mv $(TARGET) /usr/bin
|
||||
mv $(TARGET) @prefix@/bin
|
||||
|
||||
remove:
|
||||
rm -f /usr/bin/$(TARGET)
|
||||
rm -f @prefix@/bin/$(TARGET)
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue