Skip to content

Commit

Permalink
Avoid make variables in Makevars
Browse files Browse the repository at this point in the history
Solaris make does not seem to have them.
  • Loading branch information
gaborcsardi committed May 12, 2018
1 parent 26932b4 commit 1996158
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Makevars
Expand Up @@ -11,10 +11,11 @@ OBJECTS = init.o poll.o processx-connection.o \
all: tools/px supervisor/supervisor $(SHLIB)

tools/px: tools/px.c
$(CC) $(CFLAGS) -Wall $< -o $@
$(CC) $(CFLAGS) -Wall tools/px.c -o tools/px

supervisor/supervisor: supervisor/supervisor.c supervisor/utils.c
$(CC) $(CFLAGS) $^ -o supervisor/supervisor
$(CC) $(CFLAGS) supervisor/supervisor.c supervisor/utils.c \
-o supervisor/supervisor

clean:
rm -rf $(SHLIB) $(OBJECTS) \
Expand Down

0 comments on commit 1996158

Please sign in to comment.