blob: f878977ece9194890d738c4a681b693adbf4ff80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- cpuid-20150606/Makefile
+++ cpuid-20150606/Makefile
@@ -1,9 +1,3 @@
-CFLAGS+=-g
-CPPFLAGS?=
-LDFLAGS?=
-ifneq (,$(findstring arch=i386,$(CFLAGS)))
-CISA=-m32
-endif
CFL=$(CPPFLAGS) $(CFLAGS) $(CISA) -Wall -Wshadow -Wcast-align -Wredundant-decls -Wbad-function-cast -Wcast-qual -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -D_FILE_OFFSET_BITS=64 -DVERSION=$(VERSION)
PACKAGE=cpuid
@@ -44,7 +38,7 @@
gzip < $< > $@
install: $(PROG) $(PROG).man.gz
- install -D -s -m 755 $(PROG) $(BUILDROOT)/usr/bin/$(PROG)
+ install -D -m 755 $(PROG) $(BUILDROOT)/usr/bin/$(PROG)
install -D -m 444 $(PROG).man.gz $(BUILDROOT)/usr/share/man/man1/$(PROG).1.gz
clean:
|