diff options
| author | Aleksey Veresov <aleksey@veresov.pro> | 2020-04-04 19:39:38 +0300 | 
|---|---|---|
| committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-04-04 19:39:38 +0300 | 
| commit | 07657b8a9f5c2fd9047594ec8604b9c439a999e4 (patch) | |
| tree | efc15cde781a74f5782c780422dde6ec0dfb1af4 /Makefile | |
| parent | cb6a86b8db5a26b92073c4fc5ceffffa8cd842c2 (diff) | |
| download | magi-07657b8a9f5c2fd9047594ec8604b9c439a999e4.tar magi-07657b8a9f5c2fd9047594ec8604b9c439a999e4.tar.xz magi-07657b8a9f5c2fd9047594ec8604b9c439a999e4.zip  | |
[magi] Finalization.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 2 insertions, 4 deletions
@@ -2,8 +2,6 @@  #     Compilation Options  # Debug mode [yes/no] (allowing to debug the library via gdb):  DEBUG   ?= no -# Optional modules (remove unwanted ones): -MODULES ?= cgi fastcgi loadfiles urlenc  # Specify your favourite C compiler here:  CC      ?= gcc @@ -30,8 +28,8 @@ EXADIR   = examples  # Library itself:  LIB      = libmagi.a  # Modules: -EXTERNAL = cookie error file param request response session $(MODULES) -INTERNAL = cookies multipart tools urlencoded +EXTERNAL = $(foreach x,$(notdir $(wildcard $(INCLUDE)/magi/*.h)),$(x:.h=)) +INTERNAL = $(foreach x,$(notdir $(wildcard $(SRCDIR)/*.h)),$(x:.h=))  # Default target is library:  TARGET   = $(BUILD)/$(LIB)  | 
