mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-10 01:17:44 +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
|