Initial Commit
This commit is contained in:
Hendrik Holtmann
2012-08-20 21:34:54 +02:00
commit 9661b06959
158 changed files with 29484 additions and 0 deletions

13
smc-command/Makefile Normal file
View 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