mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-10 00:58:20 +03:00
9 lines
176 B
Makefile
9 lines
176 B
Makefile
|
CFLAGS=-Wall -Wextra -O0 -g -pipe
|
||
|
LIBS=-lrt
|
||
|
|
||
|
systemd: main.o name.o util.o set.o hashmap.o strv.o job.o manager.o
|
||
|
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o systemd
|