Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 763660
Collapse All | Expand All

(-)a/src/Makefile (-3 / +3 lines)
Lines 27-39 Link Here
27
all: aescrypt aescrypt_keygen
27
all: aescrypt aescrypt_keygen
28
28
29
aescrypt: $(AESCRYPT_OBJS)
29
aescrypt: $(AESCRYPT_OBJS)
30
	$(CC) $(CFLAGS) $(LIBS) -o $@ $(AESCRYPT_OBJS)
30
	$(CC) $(CFLAGS) $(LIBS) $(LDFLAGS) -o $@ $(AESCRYPT_OBJS)
31
31
32
aescrypt_keygen: $(KEYGEN_OBJS)
32
aescrypt_keygen: $(KEYGEN_OBJS)
33
	$(CC) $(CFLAGS) $(LIBS) -o $@ $(KEYGEN_OBJS)
33
	$(CC) $(CFLAGS) $(LIBS) $(LDFLAGS) -o $@ $(KEYGEN_OBJS)
34
34
35
%.o: %.c %.h
35
%.o: %.c %.h
36
	$(CC) $(CFLAGS) -c $*.c
36
	$(CC) $(CFLAGS) $(LDFLAGS) -c $*.c
37
37
38
install: aescrypt
38
install: aescrypt
39
	install -o root -g root -m 755 aescrypt /usr/bin
39
	install -o root -g root -m 755 aescrypt /usr/bin

Return to bug 763660