Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ ppproc.o : ppproc.c ppproc.h gen.h error.h symset.h clexer.h exptree.h
cppp.o : cppp.c gen.h unixisms.h error.h symset.h ppproc.h

install:
cp ./cppp $(prefix)/bin/.
cp ./cppp.1 $(prefix)/share/man/man1/.
install -D ./cppp $(prefix)/bin/cppp
install -D ./cppp.1 $(prefix)/share/man/man1/cppp.1

check:
./pace

clean:
rm -f $(OBJLIST) cppp
Expand Down
1 change: 1 addition & 0 deletions pace
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e # fail on error
binary=${1:-./cppp}
rm -f ./tests/pace.out
for f in -Dfoo -Dbar -Dbaz -Ufoo -Ubar -Ubaz \
Expand Down