summaryrefslogtreecommitdiffhomepage
path: root/libs/nixio/axTLS/config/makefile.post
blob: 033981c4d1519a7f87317c7dc6490d9c1998d494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

ifneq ($(MAKECMDGOALS), clean)
ifndef CONFIG_PLATFORM_WIN32
ifndef CONFIG_PLATFORM_SOLARIS
# do dependencies
-include .depend
all : .depend 
.depend: $(wildcard *.c)
	@$(CC) $(CFLAGS) -MM $^ > $@
endif   # 'not' solaris
endif   # 'not' win32

ifdef CONFIG_PLATFORM_WIN32
OBJ:=$(OBJ:.o=.obj)
%.obj : %.c
	$(CC) $(CFLAGS) $< 
endif   # win32

endif   # end of 'not' clean