-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A special client is not necessary : removed directory.
- Loading branch information
1 parent
919cd8d
commit ea762d1
Showing
21 changed files
with
11 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
OBJS=main.o window.o screen.o config.o graphic.o \ | ||
notif.o queue.o timer.o fifo.o | ||
include ../param.mk | ||
|
||
all : server client | ||
all : $(SERVER) | ||
|
||
client : | ||
make -C client | ||
$(SERVER) : $(OBJS) | ||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) | ||
|
||
server : | ||
make -C server | ||
%.o : %.c | ||
$(CC) $(CFLAGS) -c -o $@ $< | ||
|
||
clean : | ||
make clean -C client | ||
make clean -C server | ||
@touch $(OBJS) $(SERVER) | ||
rm $(OBJS) $(SERVER) | ||
|
||
rec : clean all | ||
|
||
.PHONY: all client server clean rec | ||
.PHONY: all clean rec | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.