forked from mirror/smcFanControl
2.4 Beta
Initial Commit
This commit is contained in:
13
smc-command/Makefile
Normal file
13
smc-command/Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
CC = gcc
|
||||
CFLAGS = -mmacosx-version-min=10.4 -Wall -g -framework IOKit
|
||||
|
||||
all: smc
|
||||
|
||||
smc: smc.o
|
||||
$(CC) $(CFLAGS) -o smc smc.o
|
||||
|
||||
smc.o: smc.h smc.c
|
||||
$(CC) -c smc.c
|
||||
|
||||
clean:
|
||||
-rm -f smc smc.o
|
||||
Reference in New Issue
Block a user