mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-15 11:07:24 +07:00
9 lines
238 B
Makefile
9 lines
238 B
Makefile
CFLAGS=-Wall -Wextra -O0 -g -pipe -D_GNU_SOURCE -fdiagnostics-show-option -Wno-unused-parameter
|
|
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
|