diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Makefile b/src/Makefile index 193d5af2..8825e45b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -21,7 +21,7 @@ CC = gcc CFLAGS += $(RPM_OPT_FLAGS) -Wall -D_GNU_SOURCE -fPIE LDFLAGS += $(RPM_LD_FLAGS) -pie -z relro -z now -PROGS = consoletype genhostid netreport rename_device usernetctl usleep +PROGS = consoletype genhostid rename_device usernetctl usleep all: $(PROGS) @@ -32,7 +32,6 @@ install: all install -m 0755 build/usleep $(DESTDIR)$(bindir) install -m 0755 build/consoletype $(DESTDIR)$(sbindir) install -m 0755 build/genhostid $(DESTDIR)$(sbindir) - install -m 0755 build/netreport $(DESTDIR)$(sbindir) install -m 0755 build/usernetctl $(DESTDIR)$(sbindir) install -m 0755 build/rename_device $(DESTDIR)$(libdir)/udev @@ -53,13 +52,6 @@ build/genhostid.o: genhostid.c $(CC) $(CFLAGS) -c -o $@ $^ -netreport: build/netreport.o - $(CC) $(LDFLAGS) -o build/$@ $^ - -build/netreport.o: netreport.c - $(CC) $(CFLAGS) -c -o $@ $^ - - rename_device: build/rename_device.o $(CC) $(LDFLAGS) -o build/$@ $^ `pkg-config glib-2.0 --libs` |