mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
16 lines
425 B
Diff
16 lines
425 B
Diff
--- a/src/Makevars.in
|
|
+++ b/src/Makevars.in
|
|
@@ -8,10 +8,10 @@
|
|
all: px @TARGETS@ $(SHLIB)
|
|
|
|
px: px.c
|
|
- $(CC) $(CFLAGS) $(LDFLAGS) -Wall px.c -o px
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall px.c -o px
|
|
|
|
interrupt: interrupt.c
|
|
- $(CC) $(CFLAGS) $(LDFLAGS) -Wall interrupt.c -o interrupt
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall interrupt.c -o interrupt
|
|
|
|
clean:
|
|
rm -rf $(SHLIB) $(OBJECTS) px.exe px interrupt.exe interrupt
|