Browse Source

Fix missing config.h in Makefile

master
Quentin Rameau 6 years ago
committed by Aaron Marcher
parent
commit
e04a385364
No known key found for this signature in database GPG Key ID: 74B048E5C2474F9A
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile View File

@@ -5,7 +5,7 @@
include config.mk

REQ = util
HDR = arg.h
HDR = arg.h config.h
COM =\
battery\
cpu\
@@ -52,6 +52,9 @@ user.o: user.c config.mk $(HDR) $(REQ:=.h)
volume.o: volume.c config.mk $(HDR) $(REQ:=.h)
wifi.o: wifi.c config.mk $(HDR) $(REQ:=.h)

config.h:
cp config.def.h $@

.o:
$(CC) -o $@ $(LDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(LDLIBS)



Loading…
Cancel
Save